From 25ee6606571c9c77a935055f45fed1a7eedaed1b Mon Sep 17 00:00:00 2001 From: limepotato Date: Tue, 25 Jun 2024 13:17:17 -0600 Subject: [PATCH] Chrome deter --- src/components/Head.astro | 4 + src/layouts/Layout-nochrome.astro | 108 +++++++++++++++++++ src/layouts/Layout.astro | 173 ++++++++++++++++-------------- src/pages/index.astro | 58 +--------- src/pages/nochrome.astro | 59 ++++++++++ 5 files changed, 263 insertions(+), 139 deletions(-) create mode 100755 src/layouts/Layout-nochrome.astro create mode 100644 src/pages/nochrome.astro diff --git a/src/components/Head.astro b/src/components/Head.astro index cb86951..d257ffc 100755 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -4,6 +4,10 @@ + + + + diff --git a/src/layouts/Layout-nochrome.astro b/src/layouts/Layout-nochrome.astro new file mode 100755 index 0000000..a119f9a --- /dev/null +++ b/src/layouts/Layout-nochrome.astro @@ -0,0 +1,108 @@ +--- +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} + + +
+
+
+ +
+
+