From cdaacdf1e3bbf669bfb9af1a48638cae40486526 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 15:42:56 +0000 Subject: [PATCH 1/7] Update src/app/experience/page.tsx --- src/app/experience/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/experience/page.tsx b/src/app/experience/page.tsx index ff8261c..c077a7b 100644 --- a/src/app/experience/page.tsx +++ b/src/app/experience/page.tsx @@ -68,7 +68,7 @@ export default function ExperiencePage() { icon: Heart, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-friends-eating-seaweed-snacks_23-2150670816.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-friends-eating-seaweed-snacks_23-2150670816.jpg?_wi=2" imageAlt="People enjoying meals together at 2Secs Arena" mediaAnimation="blur-reveal" imagePosition="left" -- 2.49.1 From cdd6d2a19789ff24011e9bf771b1cf7f91e61c89 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 15:42:58 +0000 Subject: [PATCH 2/7] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 60defcd..8744ebc 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -60,19 +60,19 @@ export default function GalleryPage() { ]} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/caesar-salad-with-grilled-chicken-fillet_114579-3764.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/caesar-salad-with-grilled-chicken-fillet_114579-3764.jpg?_wi=2", imageAlt: "Delicious fried rice and gizzard", }, { - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hand-holding-milkshake_23-2148601325.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hand-holding-milkshake_23-2148601325.jpg?_wi=4", imageAlt: "Creamy out-of-this-world milkshake", }, { - imageSrc: "http://img.b2bpic.net/free-photo/top-view-chocolate-ice-cream-tray_52683-92459.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-chocolate-ice-cream-tray_52683-92459.jpg?_wi=4", imageAlt: "Premium ice cream treats", }, { - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-friends-eating-seaweed-snacks_23-2150670816.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-friends-eating-seaweed-snacks_23-2150670816.jpg?_wi=3", imageAlt: "People enjoying meals together at 2Secs Arena", }, { @@ -80,7 +80,7 @@ export default function GalleryPage() { imageAlt: "Food photography close up appetizing", }, { - imageSrc: "http://img.b2bpic.net/free-photo/pancakes-with-banana-chocolate-topping-wooden-board-with-delicious-coffee_114579-91052.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/pancakes-with-banana-chocolate-topping-wooden-board-with-delicious-coffee_114579-91052.jpg?_wi=2", imageAlt: "Dessert spread ice cream milkshakes", }, ]} -- 2.49.1 From 7d612843c6e26eee654ee8a4f7d3525b31360419 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 15:42:59 +0000 Subject: [PATCH 3/7] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..b0b384a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } 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 { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "2Secs Arena - Luxury Restaurant with Amazing Food & Vibes", + description: "Discover 2Secs Arena: delicious meals, irresistible milkshakes, premium ice cream, and a spacious relaxing atmosphere. Order now or reserve your table.", + keywords: "restaurant, fried rice, gizzard, milkshakes, ice cream, dining, luxury food, comfortable dining space, Nigerian restaurant", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "2Secs Arena - Great Food. Great Vibes. In Just 2 Seconds.", + description: "Experience delicious meals, amazing milkshakes, premium ice cream, and genuine hospitality at 2Secs Arena.", + siteName: "2Secs Arena", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/caesar-salad-with-grilled-chicken-fillet_114579-3764.jpg", + alt: "2Secs Arena - Signature Fried Rice and Gizzard", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "2Secs Arena - Luxury Restaurant", + description: "Great food, great vibes, amazing service. Visit 2Secs Arena today.", + images: ["http://img.b2bpic.net/free-photo/abstract-futuristic-school-classroom_23-2150892684.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}