diff --git a/next.config.ts b/next.config.ts index e9ffa30..7c19f15 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,14 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: '**', + }, + ], + }, }; export default nextConfig; diff --git a/public/images/gallery/cake.jpg b/public/images/gallery/cake.jpg new file mode 100644 index 0000000..d75351d Binary files /dev/null and b/public/images/gallery/cake.jpg differ diff --git a/public/images/gallery/madeleines.jpg b/public/images/gallery/madeleines.jpg new file mode 100644 index 0000000..4eddb84 Binary files /dev/null and b/public/images/gallery/madeleines.jpg differ diff --git a/public/images/ressources/logo.png b/public/images/ressources/logo.png new file mode 100644 index 0000000..6464944 Binary files /dev/null and b/public/images/ressources/logo.png differ diff --git a/public/images/ressources/main-banner.jpeg b/public/images/ressources/main-banner.jpeg new file mode 100644 index 0000000..593bffe Binary files /dev/null and b/public/images/ressources/main-banner.jpeg differ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b0d1042..576915f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,8 @@ import type { Metadata } from "next"; import { Playfair_Display, Raleway } from "next/font/google"; import "./globals.css"; +import Header from '@/components/Header'; +import Footer from '@/components/Footer'; const playfair = Playfair_Display({ subsets: ["latin"], @@ -34,7 +36,13 @@ export default function RootLayout({ }>) { return ( - {children} + +
+
+ {children} +
+