diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7f6ec2c..8c20dbd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Bar & Bite Café Kotli | Premium Fast Food & Pizza", description: "Discover Bar & Bite Café in Kotli - the ultimate flavor destination. Premium pizzas, burgers, shawarma & gourmet sides. Order via WhatsApp. Near Ghulam Abbas Hospital.", keywords: "pizza Kotli, burgers Kotli, shawarma Kotli, fast food, restaurant Kotli, order online", openGraph: { - title: "Bar & Bite Café - The Ultimate Flavor Destination in Kotli", description: "Experience premium fast food with expert craftsmanship. Pizzas, burgers, shawarma & exclusive deals. Located near Ghulam Abbas Hospital.", url: "https://barbitecafe.com", siteName: "Bar & Bite Café", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-dining-table-arrangement_23-2150312216.jpg", alt: "Bar & Bite Café premium food display"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Bar & Bite Café - The Ultimate Flavor Destination", description: "Premium fast food & pizza in Kotli. Order now!", images: ["http://img.b2bpic.net/free-photo/high-angle-dining-table-arrangement_23-2150312216.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Bar & Bite Café - Premium Fast Food in Kotli", description: "Experience premium fast-food at Bar & Bite Café in Kotli. Crafted pizzas, burgers, shawarma, and exquisite sides near Ghulam Abbas Hospital, Pang Piran."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +