diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e57323e..664ad17 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Sweet County - Fresh Cakes & Desserts in Ghatkopar", description: "Order fresh custom cakes, pastries, and desserts in Ghatkopar East, Mumbai. 4.3★ rated bakery. Call +91 93234 44744 or order on WhatsApp.", keywords: "cake shop Ghatkopar, best bakery Ghatkopar, custom cakes, birthday cakes, pastries, desserts, fresh cakes Mumbai", metadataBase: new URL("https://sweetcounty-bakery.com"), - alternates: { - canonical: "https://sweetcounty-bakery.com"}, - openGraph: { - title: "Sweet County - Fresh Cakes & Desserts in Ghatkopar", description: "Order fresh custom cakes, pastries, and desserts in Ghatkopar East, Mumbai. 4.3★ rated by 416+ customers.", url: "https://sweetcounty-bakery.com", siteName: "Sweet County Bakery", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/birthday-cake-with-cream-cheese_661915-353.jpg", alt: "Fresh chocolate cakes and pastries"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Sweet County - Fresh Cakes & Desserts in Ghatkopar", description: "Order fresh custom cakes, pastries, and desserts in Ghatkopar East, Mumbai.", images: ["http://img.b2bpic.net/free-photo/birthday-cake-with-cream-cheese_661915-353.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Sweet County - Fresh Cakes & Desserts in Ghatkopar", description: "Custom cakes, pastries, and desserts made fresh every day. Order in minutes via WhatsApp or phone for birthdays, anniversaries, and celebrations."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -