From 0449f77b8c6ffefb5935a9ebfa178d7f25329a5b Mon Sep 17 00:00:00 2001 From: Korbs Date: Fri, 21 Jun 2024 02:41:29 -0400 Subject: [PATCH] Add default layout --- src/layouts/Default.astro | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/layouts/Default.astro diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro new file mode 100644 index 0000000..e06333b --- /dev/null +++ b/src/layouts/Default.astro @@ -0,0 +1,23 @@ +--- +// Properties +const { + Title, + Description +} = Astro.props + +// Components +import Head from '@components/global/Head.astro' +import Header from '@components/global/Header.astro' +import Footer from '@components/global/Footer.astro' + +// Styles +import '@styles/index.scss' +import '@shoelace-style/shoelace/dist/themes/dark.css'; +--- + + +
+ + +