From 997b850967df8dc03a7321b167dc9f7b52f98c7a Mon Sep 17 00:00:00 2001 From: Pauline Date: Sat, 14 Oct 2023 14:24:27 -0400 Subject: migrate(web): migrate from website/new-website to nexus/apps/website --- apps/website/src/layouts/Layout.astro | 38 +++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 apps/website/src/layouts/Layout.astro (limited to 'apps/website/src/layouts') diff --git a/apps/website/src/layouts/Layout.astro b/apps/website/src/layouts/Layout.astro new file mode 100644 index 0000000..a648f08 --- /dev/null +++ b/apps/website/src/layouts/Layout.astro @@ -0,0 +1,38 @@ +--- +import "../styles/global.css"; +import Navbar from "../components/base/Navbar.astro"; +import Favicon from "/media/polyfrost/minimal_bg.svg?url"; + +interface Props { + title?: string; + favicon?: string; +} + +const { + title = 'Polyfrost', + favicon = Favicon +} = Astro.props; +--- + + + + + + + + + + + + + + + {title} + + + + + + + + -- cgit