+
+
+
+
+
+
+ diff --git a/src/src/layouts/resources.astro b/src/src/layouts/resources.astro index e69de29..cc8b35d 100644 --- a/src/src/layouts/resources.astro +++ b/src/src/layouts/resources.astro @@ -0,0 +1,71 @@ +--- +import "@/style/globals.css"; +import { ClientRouter } from "astro:transitions"; + +import Header from "@/components/header"; +import Footer from "@/components/footer"; +import Background from "@/components/background"; + +export interface Props { + title: string; + description: string; +} + +const { title, description } = Astro.props; +const ogImage = "https://timmypidashev.dev/og-image.jpg"; +--- + + +
+