diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 78d9296..5ddd2e0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,41 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers"; +import { Tag } from "@/components"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Slurp Bakery & Cafe | Fresh Cakes & Coffee in New Delhi", description: "Order custom cakes, fresh pastries, and premium coffee 24/7 in New Friends Colony, Delhi. Get directions, call now, or order on WhatsApp. 4.2★ rated bakery.", keywords: "bakery new friends colony, cake shop delhi, custom cakes delhi, fresh pastries, coffee near me, 24 hour bakery", metadataBase: new URL("https://slurpbakery.com"), - alternates: { - canonical: "https://slurpbakery.com"}, + title: "Slurp Bakery & Cafe - Fresh Cakes & Coffee 24/7", description: "Fresh cakes, pastries, and premium coffee baked daily. Open 24/7 in New Friends Colony, New Delhi. Order custom cakes online or visit us today!", keywords: "bakery, cakes, coffee, pastries, New Delhi, custom cakes, 24/7", authors: [{ name: "Slurp Bakery" }], openGraph: { - title: "Slurp Bakery & Cafe | Fresh Cakes & Coffee", description: "Order custom cakes and fresh pastries 24/7 in New Friends Colony, Delhi. 4.2★ rated by 97+ customers.", url: "https://slurpbakery.com", siteName: "Slurp Bakery & Cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/food-chocolate-brown-bakery-background_1203-6371.jpg", alt: "Premium Chocolate Cake - Slurp Bakery"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Slurp Bakery & Cafe | Fresh Cakes & Coffee 24/7", description: "Order custom cakes, pastries, and coffee in New Delhi. Available 24 hours. Call or order on WhatsApp.", images: ["http://img.b2bpic.net/free-photo/food-chocolate-brown-bakery-background_1203-6371.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: "Slurp Bakery & Cafe - Fresh Cakes & Coffee 24/7", description: "Custom cakes, fresh breads, and premium coffee. Now open 24 hours in New Friends Colony.", type: "website"}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +