diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f9b0a4e..07470b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,18 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +import { Lenis } from "@/providers/lenisProvider/Lenis"; export const metadata: Metadata = { - title: "Prime Time Bakery | Fresh Baked Goods Daily", description: "Fresh, high-quality baked goods made daily in International City. Order bread, pastries & custom cakes via WhatsApp. Local favorite trusted by thousands.", keywords: "bakery, fresh bread, pastries, cakes, International City, WhatsApp orders, artisan baking", metadataBase: new URL("https://primetimebakery.ae"), - alternates: { - canonical: "https://primetimebakery.ae"}, - openGraph: { - title: "Prime Time Bakery | Fresh Baked Goods Daily", description: "Discover perfectly balanced, high-quality bread, pastries, and cakes baked fresh every morning.", url: "https://primetimebakery.ae", siteName: "Prime Time Bakery", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-pastry-chef-preparing-food_23-2149038997.jpg", alt: "Prime Time Bakery fresh baked goods"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Prime Time Bakery | Fresh Baked Goods Daily", description: "High-quality bread, pastries & cakes baked fresh every morning in International City.", images: ["http://img.b2bpic.net/free-photo/close-up-pastry-chef-preparing-food_23-2149038997.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Prime Time Bakery | Fresh Baked Daily", description: "Premium local bakery in International City serving fresh bread, pastries, and custom cakes. Order via WhatsApp for convenient delivery and pickup."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - -