From 6f574000f7d32cfb9ab72f0d7582679901a69553 Mon Sep 17 00:00:00 2001 From: Toastie Date: Wed, 18 Oct 2023 05:18:32 -0700 Subject: [PATCH] Upload files to "src/layouts" --- src/layouts/Layout.astro | 48 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/layouts/Layout.astro diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..fe71155 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,48 @@ +--- +import "@fontsource/inter"; +import "@fontsource/inter/500.css"; +import "@fontsource/inter/600.css"; +import "@fontsource/inter/700.css"; +import "@fontsource/inter/800.css"; +import "@fontsource/inter/900.css"; + +export interface Props { + title: string; +} + +const { title } = Astro.props; +--- + + + + + + + + + {title} + + + + + + \ No newline at end of file