diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ffede37..6e2f9d7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Al-Baraka Restaurant | Authentic Pakistani Saji & BBQ", description: "Experience authentic Pakistani cuisine at Al-Baraka Restaurant in Shahdara. 4.8★ rated saji, shawarma, and desi food. Order online or call us today.", keywords: "Pakistani restaurant, saji, shawarma, desi food, BBQ, Shahdara, authentic cuisine, food delivery", openGraph: { - title: "Al-Baraka Restaurant | Authentic Pakistani Cuisine", description: "Taste authentic Pakistani saji and desi BBQ at Al-Baraka Restaurant. 4.8★ rated with 80+ reviews.", type: "website", siteName: "Al-Baraka Restaurant", images: [ - { - url: "http://img.b2bpic.net/free-photo/grilled-steak-cherry-sauce-with-onion-pepper-potato-eggplant-side-view_141793-3751.jpg", alt: "Al-Baraka signature saji platter"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Al-Baraka Restaurant | Authentic Pakistani Saji", description: "Experience authentic Pakistani cuisine at Al-Baraka. Specializing in tender saji and authentic desi food.", images: ["http://img.b2bpic.net/free-photo/grilled-steak-cherry-sauce-with-onion-pepper-potato-eggplant-side-view_141793-3751.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Al-Baraka Restaurant", description: "Authentic Pakistani cuisine and BBQ in Shahdara"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -