diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 932ef14..138ed18 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,64 +1,20 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Al Falah Restaurant | 24-Hour Pakistani Food in Karachi", description: "Authentic Pakistani cuisine in Bin Qasim, Karachi. Fresh Nehari, Karahi, Lamb Chops & Chai. Open 24 hours. Call now or order on WhatsApp.", keywords: "Pakistani restaurant Karachi, Nehari Karachi, 24 hour restaurant, Karahi near Bin Qasim, best food Bhains Colony", metadataBase: new URL("https://alfalahrestaurant.pk"), - alternates: { - canonical: "https://alfalahrestaurant.pk" - }, - openGraph: { - title: "Al Falah Restaurant | Fresh Pakistani Food 24/7", description: "Authentic Pakistani cuisine in Bin Qasim. Award-rated restaurant with delicious Nehari, Karahi & more.", url: "https://alfalahrestaurant.pk", siteName: "Al Falah Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-traditional-azerbaijani-dish-dolma-meat-grape-leaves-clay-pot-with-yogurt_141793-5177.jpg", alt: "Al Falah Restaurant Fresh Food" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Al Falah Restaurant | Fresh Pakistani Food 24/7", description: "Authentic Pakistani cuisine. Nehari, Karahi, Lamb Chops. Order now!", images: ["http://img.b2bpic.net/free-photo/side-view-traditional-azerbaijani-dish-dolma-meat-grape-leaves-clay-pot-with-yogurt_141793-5177.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Al Falah Restaurant", description: "Fresh Pakistani Food — Open 24 Hours in Bin Qasim"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}