From d29b552f08bf28280b37e664108d943632000ffa Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 05:54:22 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b3cd047..9ec0c16 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -92,21 +92,21 @@ export default function AboutPage() { id: 1, title: "Authentic Cuisine", description: "We honor traditional recipes while incorporating contemporary culinary techniques. Every dish tells a story of authentic flavors and premium ingredients sourced for excellence and quality.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=259pgq", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=259pgq&_wi=3", imageAlt: "fresh seafood platter fine dining quality", }, { id: 2, title: "Premium Quality", description: "From hand-selected steaks to fresh daily seafood deliveries, we maintain the highest standards. Our expert chefs prepare each dish with meticulous attention to detail and passion.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=u551a9", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=u551a9&_wi=4", imageAlt: "premium grilled steak with vegetables plating", }, { id: 3, title: "Exceptional Service", description: "Our dedicated team is trained to provide personalized, attentive service. We create memorable experiences that keep guests returning to Sufrah Dine for special occasions and everyday celebrations.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=kf0wty", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=kf0wty&_wi=2", imageAlt: "upscale restaurant interior warm ambiance", }, ]} @@ -127,7 +127,7 @@ export default function AboutPage() { quote: "We've celebrated every major milestone here. The ambiance is perfect, the food is consistently excellent, and the staff treats you like family. Sufrah Dine is more than just a restaurant - it's part of our memories.", name: "Ahmed Hassan", role: "Regular Customer for 5+ Years", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bevae7", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bevae7&_wi=2", imageAlt: "Ahmed Hassan", }, { @@ -136,7 +136,7 @@ export default function AboutPage() { quote: "The variety and quality of dishes available here is unmatched. From traditional favorites to innovative preparations, every meal is a culinary journey. This is where food lovers come in Rawalpindi.", name: "Fatima Khan", role: "Food Writer & Critic", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6fdtzf", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6fdtzf&_wi=2", imageAlt: "Fatima Khan", }, { @@ -145,7 +145,7 @@ export default function AboutPage() { quote: "Perfect for both intimate dinners and business meetings. The setting is sophisticated yet welcoming, and the service ensures you can focus on enjoying your meal and company.", name: "Bilal Ahmed", role: "Business Professional", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=w7xq12", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=w7xq12&_wi=2", imageAlt: "Bilal Ahmed", }, ]} -- 2.49.1 From 8a44662832a122a94149bef7dc3bfa4ac3b80962 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 05:54:22 +0000 Subject: [PATCH 2/5] 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}