From abb45705a2e4c67362a6c9c7aac226ec7dd4afae Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 23:03:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1395 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1395 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..5bca35e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1395 @@ +import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; + +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "Drâa Boulangerie & Pâtisserie - Fresh Moroccan Pastries", description: "Fresh Bread & Delicious Pastries in Ouarzazate. Traditional Moroccan sweets and freshly baked pastries made daily."}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + {children} + +