From 8a44662832a122a94149bef7dc3bfa4ac3b80962 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 05:54:22 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..9beb7b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,54 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; +import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Montserrat } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Sufrah Dine Restaurant | Premium Steaks & Seafood Rawalpindi", + description: "Award-winning restaurant on Food Street offering premium steaks, fresh seafood, and authentic cuisine. Reserve your table or order online. Open 1 PM daily.", + keywords: "restaurant Rawalpindi, premium steaks, seafood restaurant, Pakistani cuisine, Food Street Bahria Town, dining reservations", + openGraph: { + title: "Sufrah Dine - Premium Restaurant in Rawalpindi", + description: "Experience authentic Pakistani cuisine with premium steaks and fresh seafood. Located on Food Street, Phase 7 Bahria Town.", + type: "website", + siteName: "Sufrah Dine Restaurant", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUzC6wbDcMcLn1VHmpXzIGAgA/uploaded-1773381166350-9gkp30ep.png", + alt: "Sufrah Dine Logo", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Sufrah Dine Restaurant", + description: "Premium steaks and fresh seafood in Rawalpindi", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=deihvw", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +57,9 @@ export default function RootLayout({ return ( - + {children}