diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c3c7c37..8f398e4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Crown Bakery Kondhwa | Fresh Cakes & Pastries in Pune", description: "Order fresh cakes, pastries, and bread from Crown Bakery in Kondhwa, Pune. Same-day delivery available. Call 98220 78100 or WhatsApp today!", keywords: "bakery Kondhwa, cakes Pune, pastries Kondhwa, fresh bread, birthday cakes, custom cakes Pune, croissants", robots: { - index: true, - follow: true, - }, - metadataBase: new URL("https://crownbakery.local"), - alternates: { - canonical: "https://crownbakery.local"}, - openGraph: { - title: "Crown Bakery - Fresh Cakes & Pastries in Kondhwa", description: "Freshly baked celebration cakes, pastries, and bread. Order now from Crown Bakery in Pune.", url: "https://crownbakery.local", siteName: "Crown Bakery", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-set-table-with-gift-cake-fruits-guests-mixed-color-table_140725-87135.jpg", alt: "Crown Bakery - Fresh Cakes and Pastries"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Crown Bakery - Fresh Cakes & Pastries", description: "Order fresh bakery items from Crown Bakery in Kondhwa, Pune. Call or WhatsApp today!", images: ["http://img.b2bpic.net/free-photo/side-view-set-table-with-gift-cake-fruits-guests-mixed-color-table_140725-87135.jpg"], - }, -}; + title: "Crown Bakery", description: "Fresh bakery cakes, pastries, and breads in Kondhwa, Pune"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +