diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5c03060..3c12c92 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Leonidas Groenplaats | Luxury Belgian Chocolate Café Antwerp", description: "Experience authentic Belgian chocolate at Leonidas Groenplaats in Antwerp's historic center. Premium handcrafted pralines, luxury hot chocolate, and warm hospitality since 1910.", keywords: "Belgian chocolate, pralines, Antwerp café, luxury chocolate, handcrafted pralines, hot chocolate, Belgian heritage, chocolate shop", openGraph: { - title: "Leonidas Groenplaats | Belgian Chocolate Luxury", description: "Discover the finest handcrafted Belgian chocolates and authentic café experience in Antwerp's heart.", siteName: "Leonidas Groenplaats", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/two-glasses-dessert-with-vanilla-cream-chocolate-sauce-served-with-espresso_140725-8901.jpg", alt: "Leonidas Groenplaats luxury Belgian chocolate café" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Leonidas Groenplaats | Belgian Chocolate", description: "Luxury handcrafted pralines and warm hospitality in Antwerp's historic center.", images: ["http://img.b2bpic.net/free-photo/two-glasses-dessert-with-vanilla-cream-chocolate-sauce-served-with-espresso_140725-8901.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Leonidas Groenplaats - Belgian Chocolate Café", description: "Luxury Belgian chocolate café in the heart of Antwerp. Handcrafted pralines, premium hot chocolate, and authentic hospitality since 1910."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + + + {children}