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} + + +
+
+
+ +
+
+