diff --git a/src/components/ArticleList.astro b/src/components/ArticleList.astro
new file mode 100644
index 0000000..f67a2ae
--- /dev/null
+++ b/src/components/ArticleList.astro
@@ -0,0 +1,19 @@
+---
+const { posts, displayDate = false, placeholder = false } = Astro.props;
+---
+
+ {posts.map((post) => (
+
+ {displayDate && {new Date(post.data.pubDate).toISOString().split('T')[0]}}
+ {post.data.title}
+
+ ))}
+
+ {placeholder && posts.length === 0 && (
+ <>
+
+ No posts here yet
+
+ >
+ )}
+
\ No newline at end of file
diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro
new file mode 100644
index 0000000..7bcb4bc
--- /dev/null
+++ b/src/components/Navbar.astro
@@ -0,0 +1,9 @@
+---
+import {siteConfig} from "../config";
+const navBarItems = siteConfig.navBarItems
+---
+
@@ -80,33 +72,7 @@ const { title = pageTitle, author = siteConfig.defaultAuthor.name,description =
Powered by mercury
- {statisticsEnabled && statisticsType === 'umami' && (
-
- )}
- {statisticsEnabled && statisticsType === 'goatcounter' && (
- <>
- {noscript ? (
-