diff --git a/src/components/blog/GridItem.astro b/src/components/blog/GridItem.astro index 95fd1ed..a873018 100644 --- a/src/components/blog/GridItem.astro +++ b/src/components/blog/GridItem.astro @@ -39,12 +39,12 @@ const image = await findImage(post.image); ) : ( {post.title} ) } -

{post.excerpt || post.description}

+

{post.excerpt || post.description}

diff --git a/src/components/blog/HighlightedPosts.astro b/src/components/blog/HighlightedPosts.astro index 08932dc..875ab84 100644 --- a/src/components/blog/HighlightedPosts.astro +++ b/src/components/blog/HighlightedPosts.astro @@ -37,7 +37,7 @@ const posts = await findPostsByIds(postIds); { allPostsText && allPostsLink && ( {allPostsText} » @@ -46,7 +46,7 @@ const posts = await findPostsByIds(postIds); } - {information &&

} + {information &&

} diff --git a/src/components/blog/LatestPosts.astro b/src/components/blog/LatestPosts.astro index 96244e2..e608b22 100644 --- a/src/components/blog/LatestPosts.astro +++ b/src/components/blog/LatestPosts.astro @@ -37,7 +37,7 @@ const posts = await findLatestPosts({ count }); { allPostsText && allPostsLink && ( {allPostsText} » @@ -46,7 +46,7 @@ const posts = await findLatestPosts({ count }); } - {information &&

} + {information &&

} diff --git a/src/components/blog/ListItem.astro b/src/components/blog/ListItem.astro index 039389b..06fe825 100644 --- a/src/components/blog/ListItem.astro +++ b/src/components/blog/ListItem.astro @@ -43,15 +43,15 @@ const link = !BLOG?.post?.disabled ? getPermalink(post.slug, 'post') : '';

- + ~ {Math.ceil(post.readingTime)} min read
-

+

{ link ? ( - + {post.title} ) : ( @@ -61,7 +61,7 @@ const link = !BLOG?.post?.disabled ? getPermalink(post.slug, 'post') : '';

- {post.excerpt &&

{post.excerpt}

} + {post.excerpt &&

{post.excerpt}

} diff --git a/src/components/blog/SinglePost.astro b/src/components/blog/SinglePost.astro index ad9919d..32b7f1a 100644 --- a/src/components/blog/SinglePost.astro +++ b/src/components/blog/SinglePost.astro @@ -22,10 +22,10 @@ const { post, url } = Astro.props;

- - ~ { - Math.ceil(post.readingTime) - } min read + + ~ { + Math.ceil(post.readingTime) + } min read

{post.excerpt}

@@ -60,7 +60,7 @@ const { post, url } = Astro.props; }

{ post.Content ? ( diff --git a/src/components/blog/Tags.astro b/src/components/blog/Tags.astro index a285652..122cd91 100644 --- a/src/components/blog/Tags.astro +++ b/src/components/blog/Tags.astro @@ -22,7 +22,7 @@ const { tags, class: className = 'text-sm' } = Astro.props; ) : ( {tag} diff --git a/src/components/common/ToggleTheme.astro b/src/components/common/ToggleTheme.astro index a49986e..5591ad0 100644 --- a/src/components/common/ToggleTheme.astro +++ b/src/components/common/ToggleTheme.astro @@ -13,7 +13,7 @@ export interface Props { const { label = 'Toggle between Dark and Light mode', class: - className = 'text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5 inline-flex items-center', + className = 'text-muted dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5 inline-flex items-center', iconClass = 'w-6 h-6', iconName = 'tabler:sun', } = Astro.props; diff --git a/src/components/widgets/Announcement.astro b/src/components/widgets/Announcement.astro index be58a2b..41a2586 100644 --- a/src/components/widgets/Announcement.astro +++ b/src/components/widgets/Announcement.astro @@ -3,9 +3,9 @@ import { getPermalink } from '~/utils/permalinks'; ---