diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5dcccd9..a835d39 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,32 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "IDEal Bakery Faisalabad | Custom Cakes & Signature Sweets", description: "Faisalabad's most loved traditional bakery. Fresh custom cakes, handmade barfi, and authentic sweets. Three generations of excellence. Order now on WhatsApp!", keywords: "custom cakes Faisalabad, traditional sweets Pakistan, barfi, handmade bakery, wedding cakes, birthday cakes, celebration sweets", metadataBase: new URL("https://idealbakery.com"), - alternates: { - canonical: "https://idealbakery.com"}, - openGraph: { - title: "IDEal Bakery | Fresh Custom Cakes & Heritage Sweets", description: "Celebrate with Faisalabad's trusted traditional bakery. Custom cakes, signature barfi, handmade sweets for every occasion.", url: "https://idealbakery.com", siteName: "IDEal Bakery & Sweets", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/cheerful-daughter-mother-holding-gift-breakfast_23-2147788219.jpg", alt: "IDEal Bakery fresh sweets and custom cakes"}, - ], - }, - twitter: { - card: "summary_large_image", title: "IDEal Bakery Faisalabad", description: "Custom cakes and authentic sweets from Faisalabad's most trusted bakery.", images: ["http://img.b2bpic.net/free-photo/cheerful-daughter-mother-holding-gift-breakfast_23-2147788219.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "IDEal Bakery & Sweets - Faisalabad's Most Loved Traditional Bakery", description: "Discover IDEal Bakery & Sweets in Faisalabad. Fresh cakes, signature barfi, and handmade bakery items. Custom cakes, traditional sweets, and more. Order online today!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - -