diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9e259bc..dd405fa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import { Poppins } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const poppins = Poppins({ + subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Al Nemat BBQ & Restaurant | Best Grilled Meat in Multan", description: "Al Nemat serves authentic BBQ, grilled fish, mutton kadai & paratha rolls in Multan. Order online for delivery or dine-in. Call +92 300 2349363. Trusted by 1,277+ customers.", keywords: "BBQ Multan, Best BBQ Restaurant Multan, Grilled Meat Multan, Mutton Kadai, Gulgasht BBQ, Pakistani Food Delivery Multan", metadataBase: new URL("https://alnemat-bbq.pk"), - alternates: { - canonical: "https://alnemat-bbq.pk"}, - openGraph: { - title: "Al Nemat BBQ - Multan's Favorite Grilled Meat Restaurant", description: "Freshly grilled BBQ, authentic Pakistani dishes & fast delivery. 4.8★ rated. Order now!", url: "https://alnemat-bbq.pk", siteName: "Al Nemat Restaurant & BBQ", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-steak-with-fried-ribs-with-fried-chicken-potatoes-board-with-sauce_141793-4233.jpg", alt: "Al Nemat BBQ Platter"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Al Nemat BBQ - Best Grilled Meat in Multan", description: "Authentic BBQ & Pakistani cuisine. Dine-in, Takeout & Delivery. Call +92 300 2349363", images: ["http://img.b2bpic.net/free-photo/top-view-steak-with-fried-ribs-with-fried-chicken-potatoes-board-with-sauce_141793-4233.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Al Nemat - Multan's Best BBQ & Paratha Rolls", description: "Freshly Grilled BBQ, Karahi, Fish & Rolls – Dine-In, Takeout & Delivery Available. Trusted by 1,277+ Happy Customers"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}