Merge version_1 into main #1
@@ -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"
|
||||
|
||||
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +73,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -100,27 +100,27 @@ export default function MenuPage() {
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/beef-chicken-kebab-bbq-with-roasted-grilled-potatoes-tomatoes-served-with-rice_114579-980.jpg",
|
||||
"http://img.b2bpic.net/free-photo/beef-chicken-kebab-bbq-with-roasted-grilled-potatoes-tomatoes-served-with-rice_114579-980.jpg?_wi=1",
|
||||
imageAlt: "Jollof rice with grilled meats",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/grilled-chicken-white-plate-with-salad-tomatoes-carrots-chilies-cut-into-pieces_1150-21422.jpg",
|
||||
"http://img.b2bpic.net/free-photo/grilled-chicken-white-plate-with-salad-tomatoes-carrots-chilies-cut-into-pieces_1150-21422.jpg?_wi=1",
|
||||
imageAlt: "Grilled chicken restaurant plate",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/spicy-vegan-salad-with-sticky-berry-grain-rice_1339-6870.jpg",
|
||||
"http://img.b2bpic.net/free-photo/spicy-vegan-salad-with-sticky-berry-grain-rice_1339-6870.jpg?_wi=2",
|
||||
imageAlt: "Gizzard dish served restaurant plating",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/high-angle-hand-holding-milkshake_23-2148601325.jpg",
|
||||
"http://img.b2bpic.net/free-photo/high-angle-hand-holding-milkshake_23-2148601325.jpg?_wi=3",
|
||||
imageAlt: "Premium creamy milkshake",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-chocolate-ice-cream-tray_52683-92459.jpg",
|
||||
"http://img.b2bpic.net/free-photo/top-view-chocolate-ice-cream-tray_52683-92459.jpg?_wi=3",
|
||||
imageAlt: "Gourmet ice cream desserts",
|
||||
},
|
||||
]}
|
||||
@@ -143,7 +143,7 @@ export default function MenuPage() {
|
||||
description:
|
||||
"A West African classic with aromatic rice, perfectly spiced and served with your choice of protein. Authentic, flavorful, and absolutely satisfying.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/beef-chicken-kebab-bbq-with-roasted-grilled-potatoes-tomatoes-served-with-rice_114579-980.jpg",
|
||||
"http://img.b2bpic.net/free-photo/beef-chicken-kebab-bbq-with-roasted-grilled-potatoes-tomatoes-served-with-rice_114579-980.jpg?_wi=2",
|
||||
imageAlt: "Jollof rice plated restaurant dish",
|
||||
},
|
||||
{
|
||||
@@ -152,7 +152,7 @@ export default function MenuPage() {
|
||||
description:
|
||||
"Tender, juicy, and marinated to perfection. Served with fresh salad and your favorite sides. A protein-packed favorite.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/grilled-chicken-white-plate-with-salad-tomatoes-carrots-chilies-cut-into-pieces_1150-21422.jpg",
|
||||
"http://img.b2bpic.net/free-photo/grilled-chicken-white-plate-with-salad-tomatoes-carrots-chilies-cut-into-pieces_1150-21422.jpg?_wi=2",
|
||||
imageAlt: "Grilled chicken restaurant plate",
|
||||
},
|
||||
{
|
||||
@@ -161,7 +161,7 @@ export default function MenuPage() {
|
||||
description:
|
||||
"From creamy ice cream to indulgent milkshakes, our dessert menu offers the perfect sweet escape for any craving.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/pancakes-with-banana-chocolate-topping-wooden-board-with-delicious-coffee_114579-91052.jpg",
|
||||
"http://img.b2bpic.net/free-photo/pancakes-with-banana-chocolate-topping-wooden-board-with-delicious-coffee_114579-91052.jpg?_wi=1",
|
||||
imageAlt: "Dessert spread ice cream milkshakes",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -102,17 +102,17 @@ export default function HomePage() {
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/caesar-salad-with-grilled-chicken-fillet_114579-3764.jpg",
|
||||
"http://img.b2bpic.net/free-photo/caesar-salad-with-grilled-chicken-fillet_114579-3764.jpg?_wi=1",
|
||||
imageAlt: "Delicious fried rice and gizzard",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/high-angle-hand-holding-milkshake_23-2148601325.jpg",
|
||||
"http://img.b2bpic.net/free-photo/high-angle-hand-holding-milkshake_23-2148601325.jpg?_wi=1",
|
||||
imageAlt: "Creamy out-of-this-world milkshake",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-chocolate-ice-cream-tray_52683-92459.jpg",
|
||||
"http://img.b2bpic.net/free-photo/top-view-chocolate-ice-cream-tray_52683-92459.jpg?_wi=1",
|
||||
imageAlt: "Premium ice cream treats",
|
||||
},
|
||||
{
|
||||
@@ -157,7 +157,7 @@ export default function HomePage() {
|
||||
icon: Armchair,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/friends_23-2148014930.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/friends_23-2148014930.jpg?_wi=1"
|
||||
imageAlt="Spacious comfortable dining environment"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -180,7 +180,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Flavor packed, perfectly cooked, and one of our most loved dishes. A delightful combination of crispy rice, tender gizzard, and aromatic spices.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/spicy-vegan-salad-with-sticky-berry-grain-rice_1339-6870.jpg",
|
||||
"http://img.b2bpic.net/free-photo/spicy-vegan-salad-with-sticky-berry-grain-rice_1339-6870.jpg?_wi=1",
|
||||
imageAlt: "Signature fried rice and gizzard",
|
||||
},
|
||||
{
|
||||
@@ -189,7 +189,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Creamy, rich, and unforgettable. Our milkshakes are handcrafted daily with premium ingredients and served ice-cold.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/high-angle-hand-holding-milkshake_23-2148601325.jpg",
|
||||
"http://img.b2bpic.net/free-photo/high-angle-hand-holding-milkshake_23-2148601325.jpg?_wi=2",
|
||||
imageAlt: "Premium creamy milkshake",
|
||||
},
|
||||
{
|
||||
@@ -198,7 +198,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"The sweet indulgence everyone talks about. Choose from a variety of flavors and enjoy guilt-free bliss.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-chocolate-ice-cream-tray_52683-92459.jpg",
|
||||
"http://img.b2bpic.net/free-photo/top-view-chocolate-ice-cream-tray_52683-92459.jpg?_wi=2",
|
||||
imageAlt: "Gourmet ice cream desserts",
|
||||
},
|
||||
]}
|
||||
@@ -269,7 +269,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="People enjoying meals together at 2Secs Arena"
|
||||
mediaAnimation="blur-reveal"
|
||||
imagePosition="left"
|
||||
|
||||
@@ -90,7 +90,7 @@ export default function ReservePage() {
|
||||
icon: Heart,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/friends_23-2148014930.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/friends_23-2148014930.jpg?_wi=3"
|
||||
imageAlt="Comfortable restaurant seating"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
|
||||
@@ -96,7 +96,7 @@ export default function ReviewsPage() {
|
||||
icon: Utensils,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/friends_23-2148014930.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/friends_23-2148014930.jpg?_wi=2"
|
||||
imageAlt="Spacious comfortable dining environment"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -133,7 +133,7 @@ export default function ReviewsPage() {
|
||||
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=4"
|
||||
imageAlt="People enjoying meals together at 2Secs Arena"
|
||||
mediaAnimation="blur-reveal"
|
||||
imagePosition="left"
|
||||
|
||||
Reference in New Issue
Block a user