diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dae82cd..81a7133 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "New Sheesh Mehal - Premium Pakistani Restaurant in Okara", description: "Experience authentic Pakistani cuisine at New Sheesh Mehal Hotel & Family Restaurant in Okara. Premium biryani, traditional dishes, and fine dining experience.", keywords: "Pakistani restaurant, biryani, authentic cuisine, Okara, fine dining, family restaurant, food delivery", metadataBase: new URL("https://newsheeshmehal.com"), - openGraph: { - title: "New Sheesh Mehal - Premium Pakistani Restaurant", description: "Taste celebrating moments. Authentic Pakistani cuisine with luxury ambiance.", url: "https://newsheeshmehal.com", siteName: "New Sheesh Mehal", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/elegantly-dressed-couple-handsome-stylish-male-charming-brunette-woman-sitting-together-luxury-restaurant_613910-18589.jpg", alt: "luxury Pakistani restaurant interior ambiance warm lighting"}, - ], - }, - twitter: { - card: "summary_large_image", title: "New Sheesh Mehal - Premium Pakistani Restaurant", description: "Authentic biryani and traditional Pakistani cuisine in Okara.", images: [ - "http://img.b2bpic.net/free-photo/elegantly-dressed-couple-handsome-stylish-male-charming-brunette-woman-sitting-together-luxury-restaurant_613910-18589.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "New Sheesh Mehal", description: "Experience authentic Pakistani cuisine in luxury ambiance"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -