From 33ca6d41de0fdf6646d8c413ffdc9747714b81b8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 13:32:03 +0000 Subject: [PATCH 1/3] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index cb8bc95..9920048 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -77,7 +77,7 @@ export default function GalleryPage() { price: "Golden Hour", rating: 5, reviewCount: "Photos", - imageSrc: "http://img.b2bpic.net/free-photo/middle-age-friends-having-fun-food-festival_23-2149490825.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/middle-age-friends-having-fun-food-festival_23-2149490825.jpg?_wi=2", imageAlt: "peaceful rooftop dining during sunset", }, { @@ -87,7 +87,7 @@ export default function GalleryPage() { price: "Freshly Made", rating: 5, reviewCount: "Photos", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-eating-together_23-2149152901.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-eating-together_23-2149152901.jpg?_wi=4", imageAlt: "beautiful chinese food plated presentation", }, { @@ -97,7 +97,7 @@ export default function GalleryPage() { price: "Warm Lights", rating: 5, reviewCount: "Photos", - imageSrc: "http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236889.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236889.jpg?_wi=2", imageAlt: "rooftop dinner at night with warm lights", }, { @@ -107,7 +107,7 @@ export default function GalleryPage() { price: "Happy Moments", rating: 5, reviewCount: "Photos", - imageSrc: "http://img.b2bpic.net/free-photo/friends-holding-watermelon-slices-close-up_23-2149073111.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/friends-holding-watermelon-slices-close-up_23-2149073111.jpg?_wi=2", imageAlt: "friends gathering rooftop dinner celebration", }, ]} -- 2.49.1 From eeaed230eb947f042f3d3285426293b7f1d4b869 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 13:32:03 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..38cc41b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito } 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 { Nunito } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Roof Yard - Karachi's Hidden Rooftop Dining", + description: "Escape the city noise at Roof Yard. Premium rooftop restaurant in Karachi with authentic Chinese food, peaceful vibes, and perfect for groups. Affordable. Friendly.", + keywords: "rooftop restaurants Karachi, affordable rooftop dining, best rooftop restaurants, Chinese food Karachi, hidden gem restaurant, dinner with view", + metadataBase: new URL("https://roofyard.pk"), + alternates: { + canonical: "https://roofyard.pk", + }, + openGraph: { + title: "Roof Yard - Hidden Rooftop Dining Above the City", + description: "Climb ordinary stairs. Discover an unexpected rooftop escape in Karachi. Good food, fresh air, peaceful vibes.", + url: "https://roofyard.pk", + siteName: "Roof Yard", + type: "website", + images: [ + { + url: "https://roofyard.pk/og-hero-rooftop.jpg", + alt: "Roof Yard rooftop restaurant night view with warm lights", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Roof Yard - Hidden Rooftop Dining in Karachi", + description: "Escape the streets. Experience Karachi's hidden rooftop dining gem with authentic food and peaceful atmosphere.", + images: ["https://roofyard.pk/twitter-hero.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}