Skip to content

Commit 1e6dcd3

Browse files
committed
fix: some cleanup
1 parent 6ad1ba9 commit 1e6dcd3

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

src/components/BaseHead.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { SITE_TITLE } from '../consts';
66
77
interface Props {
88
title: string;
9+
description?: string;
910
}
1011
1112
const canonicalURL = new URL(Astro.url.pathname, Astro.site);

src/layouts/BlogPost.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { title, pubDate, updatedDate, carouselImages, tags } = Astro.props;
1414

1515
<html lang="en" class="bg-black text-gray-100">
1616
<head>
17-
<BaseHead title={title} />
17+
<BaseHead title={title}/>
1818
</head>
1919

2020
<body class="min-h-screen flex flex-col">

tailwind.config.mjs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@ export default {
77
'atkinson': ['Atkinson', 'ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace'],
88
'mightyline': ['Mightyline', 'ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace'],
99
},
10-
colors: {
11-
green: {
12-
400: '#59F22E',
13-
500: '#4AD926',
14-
},
15-
},
1610
},
1711
},
1812
plugins: [

0 commit comments

Comments
 (0)