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"; +--- + + + + {title} + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+ +
+
+ + + + diff --git a/src/src/pages/resources/index.astro b/src/src/pages/resources/index.astro index e69de29..228ee67 100644 --- a/src/src/pages/resources/index.astro +++ b/src/src/pages/resources/index.astro @@ -0,0 +1,9 @@ +--- +import ResourcesLayout from "@/layouts/resources.astro"; + +const title = "Resources Test"; +const description = "Testing the new polygon background styles"; +--- + + +