From 6e4e6d78f0e6543297d99422c07c9aab64eb58d7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 09:06:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c5d0b29..a654d78 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,28 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Royal Live Bakery | Custom Eggless Cakes in Hisar", description: "Hisar's first transparent bakery. Watch live baking, customize your cake, 100% eggless. Fresh, premium cakes for celebrations. Order via WhatsApp.", keywords: "bakery Hisar, custom cakes, eggless cakes, live baking, celebration cakes, Haryana", metadataBase: new URL("https://royallivebakery.com"), - alternates: { - canonical: "https://royallivebakery.com"}, - openGraph: { - title: "Royal Live Bakery | Experience Hisar's First Live Bakery", description: "Watch your cake being crafted live. 100% eggless, fully customizable, made with love. Premium celebration cakes in Hisar.", url: "https://royallivebakery.com", siteName: "Royal Live Bakery", images: [ - { - url: "http://img.b2bpic.net/free-photo/berries-sponge-cake_23-2147984964.jpg", alt: "Royal Live Bakery - Transparent Live Baking"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Royal Live Bakery | Experience Hisar's First Live Bakery", description: "Watch your cake being crafted live. Premium eggless cakes, fully customizable. Order via WhatsApp.", images: ["http://img.b2bpic.net/free-photo/berries-sponge-cake_23-2147984964.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Royal Live Bakery - Hisar's First Live Bakery", description: "Experience 100% eggless cakes crafted live by our chefs. Watch through transparent windows, customize your celebration cake, and enjoy fresh delivery across Hisar."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +