diff --git a/astro.config.mjs b/astro.config.mjs index 2148d5c..4b8a15c 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -4,6 +4,7 @@ import tailwind from "@astrojs/tailwind"; // https://astro.build/config export default defineConfig({ + devToolbar: { enabled: false }, integrations: [tailwind()], i18n: { defaultLocale: "fr", diff --git a/src/components/photo/PhotoFooter.astro b/src/components/photo/PhotoFooter.astro new file mode 100644 index 0000000..c51ac6b --- /dev/null +++ b/src/components/photo/PhotoFooter.astro @@ -0,0 +1,63 @@ + + + diff --git a/src/layouts/PhotoLayout.astro b/src/layouts/PhotoLayout.astro index 2a63140..6c67c01 100644 --- a/src/layouts/PhotoLayout.astro +++ b/src/layouts/PhotoLayout.astro @@ -1,4 +1,6 @@ --- +import PhotoFooter from '../components/photo/PhotoFooter.astro'; + const { title = "Galerie Photo - Jalil Arfaoui", enableScroll = false } = Astro.props; --- @@ -25,19 +27,7 @@ const { title = "Galerie Photo - Jalil Arfaoui", enableScroll = false } = Astro.