+
+
{post.frontmatter.pubDate}
-
+
diff --git a/src/components/Card.astro b/src/components/Card.astro
index 66791aea..17cb8b9b 100644
--- a/src/components/Card.astro
+++ b/src/components/Card.astro
@@ -11,7 +11,7 @@ let { variant, displayHr } = Astro.props;
---
{Astro.props.title}
diff --git a/src/components/NavBar.astro b/src/components/NavBar.astro
index 0099aca0..7a61d166 100644
--- a/src/components/NavBar.astro
+++ b/src/components/NavBar.astro
@@ -5,7 +5,7 @@ import ThemeToggle from './subComponents/ThemeToggle.astro';
---
+ class="navbar-container sticky top-0 z-10 mb-8 w-full border-b border-slate-400/50 bg-white px-4 sm:px-6 md:px-10 py-2 xl:px-14 dark:border-slate-400/40 dark:bg-slate-950">
diff --git a/src/components/subComponents/Button.astro b/src/components/subComponents/Button.astro
index 821239aa..96c56893 100644
--- a/src/components/subComponents/Button.astro
+++ b/src/components/subComponents/Button.astro
@@ -5,9 +5,11 @@ interface Props {
id?: string;
showCaret?: boolean;
class?: string;
+ icon?: boolean;
}
-const { name, link, id, showCaret = false, class: className } = Astro.props;
+const { name, link, id, showCaret = false, class: className, icon = false } = Astro.props;
+import { Icon } from 'astro-icon/components';
---