From fcc2f4704e39b0e69b377cc138f75027721dac22 Mon Sep 17 00:00:00 2001 From: Dawid Rycerz Date: Tue, 22 Jul 2025 15:08:37 +0300 Subject: Initial template --- src/layouts/PageLayout.astro | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/layouts/PageLayout.astro (limited to 'src/layouts/PageLayout.astro') diff --git a/src/layouts/PageLayout.astro b/src/layouts/PageLayout.astro new file mode 100644 index 0000000..eebcba9 --- /dev/null +++ b/src/layouts/PageLayout.astro @@ -0,0 +1,27 @@ +--- +import Layout from '~/layouts/Layout.astro'; +import Header from '~/components/widgets/Header.astro'; +import Footer from '~/components/widgets/Footer.astro'; + +import { headerData, footerData } from '~/navigation'; + +import type { MetaData } from '~/types'; + +export interface Props { + metadata?: MetaData; +} + +const { metadata } = Astro.props; +--- + + + +
+ +
+ +
+ +