From 6480736b933df90b90569efcadc63569188fbaf2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:16:04 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1416 +------------------------------------------- 1 file changed, 11 insertions(+), 1405 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5d338e7..361cf00 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Vienna Bakery | Artisanal Breads & Fresh Pastries", description: "Handcrafted pastries, breads, and cakes baked fresh daily using traditional European recipes and premium ingredients. Order online or visit us today.", keywords: "bakery, artisan bread, pastries, croissants, sourdough, European baking, fresh bread, custom cakes", openGraph: { - title: "Vienna Bakery | Premium Artisanal Baking", description: "Discover handcrafted pastries and breads baked fresh daily with traditional recipes", siteName: "Vienna Bakery", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/waitress-offering-macarons_23-2147985067.jpg", alt: "Vienna Bakery fresh bread display"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Vienna Bakery | Artisanal Baking", description: "Fresh pastries and breads baked daily with traditional European recipes", images: ["http://img.b2bpic.net/free-photo/waitress-offering-macarons_23-2147985067.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Vienna Bakery", description: "Handcrafted pastries and breads baked fresh daily"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -