From 374e0953ffc87dffd28f14cef021e7f929148fa0 Mon Sep 17 00:00:00 2001 From: ayoayco Date: Sun, 21 Jul 2024 12:38:49 +0200 Subject: [PATCH] feat: new page for threads --- src/pages/threads.astro | 63 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/pages/threads.astro diff --git a/src/pages/threads.astro b/src/pages/threads.astro new file mode 100644 index 0000000..bb98f3b --- /dev/null +++ b/src/pages/threads.astro @@ -0,0 +1,63 @@ +--- +import Layout from "../layouts/Layout.astro"; +import Footer from "../components/Footer.astro"; +import Posts from "../components/Posts.astro"; + +const posts = await Astro.glob("./now/and-then/posts/*.astro"); +const page = { + title: 'Ayo\'s Threads', + description: 'Incubator for thoughts before the become a blog' +} +--- + + +
+

{page.title}

+ +

{page.description}

+

Visit the page

+ +
+
+
+ +