diff --git a/src/components/BlogPost.astro b/src/components/BlogPost.astro
index d32de1d..1c9bd24 100644
--- a/src/components/BlogPost.astro
+++ b/src/components/BlogPost.astro
@@ -43,7 +43,7 @@ const { title, description, date, tags } = Astro.props;
{
tags?.map((tag) => (
-
+
))
}
diff --git a/src/components/Tag.astro b/src/components/Tag.astro
index 1a26f22..0690b6a 100644
--- a/src/components/Tag.astro
+++ b/src/components/Tag.astro
@@ -9,7 +9,7 @@ interface Props {
const { name, count, href, variant = "default" } = Astro.props;
const linkHref = href || `/tags/${name}`;
const isSmall = variant === "small";
-const textSize = isSmall ? "text-xs" : "text-sm";
+const textSize = isSmall ? "text-sm" : "text-base";
---