diff --git a/astro.config.mjs b/astro.config.mjs index a994fa4..c7d6687 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,6 +1,7 @@ import { defineConfig } from 'astro/config'; import tailwind from "@astrojs/tailwind"; +import svelte from "@astrojs/svelte"; // https://astro.build/config export default defineConfig({ diff --git a/public/images/jam.webp b/public/images/jam.webp new file mode 100644 index 0000000..95af342 Binary files /dev/null and b/public/images/jam.webp differ diff --git a/src/components/Footer.svelte b/src/components/Footer.svelte new file mode 100644 index 0000000..b08eb95 --- /dev/null +++ b/src/components/Footer.svelte @@ -0,0 +1,39 @@ + + + + + diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 2e7216c..b1b8d50 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,4 +1,6 @@ --- +import Footer from "../components/Footer.svelte"; + interface Props { title: string; } @@ -32,6 +34,7 @@ const { title } = Astro.props; +