diff --git a/src/components/Tag.astro b/src/components/Tag.astro
index 28578b2..aac1816 100644
--- a/src/components/Tag.astro
+++ b/src/components/Tag.astro
@@ -1,36 +1,35 @@
---
import IconHash from "@/assets/icons/IconHash.svg";
-export interface Props {
+type Props = {
tag: string;
tagName: string;
size?: "sm" | "lg";
-}
+};
-const { tag, tagName, size = "sm" } = Astro.props;
+const { tag, tagName, size = "lg" } = Astro.props;
---
-
+
- {tagName}
+ {tagName}
diff --git a/src/layouts/PostDetails.astro b/src/layouts/PostDetails.astro
index aa3929d..6854cf6 100644
--- a/src/layouts/PostDetails.astro
+++ b/src/layouts/PostDetails.astro
@@ -15,10 +15,10 @@ import IconChevronLeft from "@/assets/icons/IconChevronLeft.svg";
import IconChevronRight from "@/assets/icons/IconChevronRight.svg";
import { SITE } from "@/config";
-export interface Props {
+type Props = {
post: CollectionEntry<"blog">;
posts: CollectionEntry<"blog">[];
-}
+};
const { post, posts } = Astro.props;
@@ -118,8 +118,8 @@ const nextPost =
-
- {tags.map(tag => )}
+
diff --git a/src/pages/tags/index.astro b/src/pages/tags/index.astro
index 167312c..2b0968e 100644
--- a/src/pages/tags/index.astro
+++ b/src/pages/tags/index.astro
@@ -16,8 +16,8 @@ let tags = getUniqueTags(posts);
-
- {tags.map(({ tag, tagName }) => )}
+
+ {tags.map(({ tag, tagName }) => )}