From 38884e152bb20f695bf67a84443c81dba4bd633d Mon Sep 17 00:00:00 2001 From: limepotato Date: Sat, 17 Aug 2024 13:34:44 -0600 Subject: [PATCH] nochrome --- astro/src/layouts/Layout-nochrome.astro | 29 +++++ astro/src/pages/nochrome.astro | 144 ++++++++++++++++++++++++ 2 files changed, 173 insertions(+) create mode 100755 astro/src/layouts/Layout-nochrome.astro create mode 100644 astro/src/pages/nochrome.astro diff --git a/astro/src/layouts/Layout-nochrome.astro b/astro/src/layouts/Layout-nochrome.astro new file mode 100755 index 0000000..05d3228 --- /dev/null +++ b/astro/src/layouts/Layout-nochrome.astro @@ -0,0 +1,29 @@ +--- +import Header from "../components/Header.astro"; +import Head from "../components/Head.astro"; +import Footer from "../components/Footer.astro"; +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + + + + + {title} + + +
+
+
+ +
+
+