From a88767b924151a13af7e328ef355453b7035ceeb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 09:34:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8ff105d..4e8821a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "Shree Satguru Bakers | Fresh Cakes & Snacks in Samba", description: "Order fresh cakes, pastries, and snacks from Shree Satguru Bakers in Samba. Custom cakes, birthday cakes, and daily bakery items. Call 060068 86163 for orders.", keywords: "cake shop Samba, bakery near me, birthday cake Samba, fresh cakes, pastries, snacks, custom cake order", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Shree Satguru Bakers | Fresh Cakes & Bakery Treats", description: "Discover delicious fresh cakes, pastries, and snacks at Shree Satguru Bakers in Samba. Order now or call 060068 86163.", siteName: "Shree Satguru Bakers", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/different-types-pastries-glass-cabinet-with-price-tag_23-2148028012.jpg", alt: "Shree Satguru Bakers fresh cakes and pastries"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Shree Satguru Bakers | Fresh Cakes & Snacks", description: "Order fresh cakes and snacks in Samba. Custom designs available. Call 060068 86163.", images: ["http://img.b2bpic.net/free-photo/different-types-pastries-glass-cabinet-with-price-tag_23-2148028012.jpg"], - }, -}; + title: "Shree Satguru Bakers | Fresh Cakes & Bakery in Samba", description: "Order delicious fresh cakes, pastries, and snacks from Shree Satguru Bakers in Samba. Customizable cakes for all occasions with 24-48 hours delivery."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}