diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2edee60..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +0,0 @@ -import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Drâa Boulangerie & Pâtisserie - Fresh Pastries in Ouarzazate", description: "Traditional Moroccan bakery in Ouarzazate. Fresh croissants, pastillas, and honey cookies baked daily. Call 06 54 81 86 83 or visit us for authentic pastries.", keywords: "bakery Ouarzazate, Moroccan pastries, croissants, pastilla, honey cookies, fresh baked goods", metadataBase: new URL("https://draaboulangerie.com"), - alternates: { - canonical: "https://draaboulangerie.com"}, - openGraph: { - title: "Drâa Boulangerie & Pâtisserie - Fresh Moroccan Pastries", description: "Traditional Moroccan bakery offering fresh croissants, pastillas, and authentic sweets daily.", url: "https://draaboulangerie.com", siteName: "Drâa Boulangerie & Pâtisserie", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379551.jpg", alt: "Fresh Moroccan pastries"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Drâa Boulangerie & Pâtisserie", description: "Fresh Moroccan pastries and baked goods in Ouarzazate", images: ["http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379551.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -