Merge version_1 into main #2
260
src/app/page.tsx
260
src/app/page.tsx
@@ -12,7 +12,7 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import { Truck, Utensils } from "lucide-react";
|
||||
import { Truck, Utensils, ChefHat } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,69 +32,32 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Our Story",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "reviews",
|
||||
},
|
||||
{
|
||||
name: "Order Now",
|
||||
id: "order",
|
||||
},
|
||||
{ name: "Our Story", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Order Now", id: "order" },
|
||||
]}
|
||||
brandName="The Wongs"
|
||||
button={{ text: "Order Now", href: "#order" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Authentic Cuisine, Served with Warmth"
|
||||
description="The Wongs: Brynmawr's most beloved Chinese takeaway since decades, crafted with tradition and heart."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call to Order",
|
||||
href: "tel:+441495315125",
|
||||
},
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{ text: "Call to Order", href: "tel:+441495315125" },
|
||||
{ text: "View Menu", href: "#menu" },
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-teapot-tangerines-chinese-new-year_23-2148358111.jpg?_wi=1",
|
||||
imageAlt: "Authentic Chinese Food",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stock-photo-contemporary-food-served-fashionable-plate-restaurant-healthy-veggie-rolls-with-sauces-served-plate_132075-8862.jpg",
|
||||
imageAlt: "Fresh Prepared Meal",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sushi-is-plate-with-chopsticks-dipping-sauce-white-cement-floor_1150-22640.jpg",
|
||||
imageAlt: "Traditional Chinese Cuisine",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/red-gurza-top-view_141793-4514.jpg",
|
||||
imageAlt: "Chef Preparation",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-vegetarian-balls-served-bowl_1220-7582.jpg",
|
||||
imageAlt: "Family Dinner",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-food-black-white_23-2147747041.jpg",
|
||||
imageAlt: "Takeaway Selection",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-teapot-tangerines-chinese-new-year_23-2148358111.jpg", imageAlt: "Authentic Chinese Food" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/stock-photo-contemporary-food-served-fashionable-plate-restaurant-healthy-veggie-rolls-with-sauces-served-plate_132075-8862.jpg", imageAlt: "Fresh Prepared Meal" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/sushi-is-plate-with-chopsticks-dipping-sauce-white-cement-floor_1150-22640.jpg", imageAlt: "Traditional Chinese Cuisine" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/red-gurza-top-view_141793-4514.jpg", imageAlt: "Chef Preparation" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fried-vegetarian-balls-served-bowl_1220-7582.jpg", imageAlt: "Family Dinner" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/asian-food-black-white_23-2147747041.jpg", imageAlt: "Takeaway Selection" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -105,21 +68,9 @@ export default function LandingPage() {
|
||||
title="The Wongs by the Numbers"
|
||||
tag="Our Legacy"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "50+",
|
||||
description: "5-Star Reviews",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "7",
|
||||
description: "Days Open Weekly",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "100%",
|
||||
description: "Freshly Prepared",
|
||||
},
|
||||
{ id: "1", value: "50+", description: "5-Star Reviews" },
|
||||
{ id: "2", value: "7", description: "Days Open Weekly" },
|
||||
{ id: "3", value: "100%", description: "Freshly Prepared" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -130,7 +81,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Heritage on Bailey Street"
|
||||
description="Tucked away in the heart of Brynmawr, The Wongs has become a local institution, serving authentic flavors to families across the valleys."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-people-eating-asian-food_23-2150288323.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-people-eating-asian-food_23-2150288323.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -141,60 +92,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Signature",
|
||||
name: "Legendary Curry Sauce",
|
||||
price: "£4.50",
|
||||
rating: 5,
|
||||
reviewCount: "500+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-pumpkin-soup-with-little-bread-rusks-garlics-white-space_140725-95340.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Classic",
|
||||
name: "Golden Chicken Balls",
|
||||
price: "£6.00",
|
||||
rating: 5,
|
||||
reviewCount: "300+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-orange-lentil-soup-bowl-with-spoon-with-tomatoes-wooden-kitchen-board-white-surface_141793-81112.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Authentic",
|
||||
name: "Handmade Dumplings",
|
||||
price: "£5.50",
|
||||
rating: 5,
|
||||
reviewCount: "200+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-tomato-soup-with-seasonings-dark-space_140725-95220.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Favorite",
|
||||
name: "Rich Satay Sauce",
|
||||
price: "£4.00",
|
||||
rating: 5,
|
||||
reviewCount: "400+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-food-croquettes-arrangement_23-2149202649.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
brand: "Classic",
|
||||
name: "Crispy Chips",
|
||||
price: "£3.00",
|
||||
rating: 4,
|
||||
reviewCount: "250+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/box-noodles-with-sesame-seeds_23-2148382839.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
brand: "Daily",
|
||||
name: "Chef Special Fried Rice",
|
||||
price: "£7.50",
|
||||
rating: 5,
|
||||
reviewCount: "150+",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-food-box-right-corner-copy-space_23-2148242623.jpg",
|
||||
},
|
||||
{ id: "1", brand: "Signature", name: "Legendary Curry Sauce", price: "£4.50", rating: 5, reviewCount: "500+", imageSrc: "http://img.b2bpic.net/free-photo/front-view-pumpkin-soup-with-little-bread-rusks-garlics-white-space_140725-95340.jpg" },
|
||||
{ id: "2", brand: "Classic", name: "Golden Chicken Balls", price: "£6.00", rating: 5, reviewCount: "300+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-orange-lentil-soup-bowl-with-spoon-with-tomatoes-wooden-kitchen-board-white-surface_141793-81112.jpg" },
|
||||
{ id: "3", brand: "Authentic", name: "Handmade Dumplings", price: "£5.50", rating: 5, reviewCount: "200+", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-tomato-soup-with-seasonings-dark-space_140725-95220.jpg" },
|
||||
{ id: "4", brand: "Favorite", name: "Rich Satay Sauce", price: "£4.00", rating: 5, reviewCount: "400+", imageSrc: "http://img.b2bpic.net/free-photo/tasty-food-croquettes-arrangement_23-2149202649.jpg" },
|
||||
{ id: "5", brand: "Classic", name: "Crispy Chips", price: "£3.00", rating: 4, reviewCount: "250+", imageSrc: "http://img.b2bpic.net/free-photo/box-noodles-with-sesame-seeds_23-2148382839.jpg" },
|
||||
{ id: "6", brand: "Daily", name: "Chef Special Fried Rice", price: "£7.50", rating: 5, reviewCount: "150+", imageSrc: "http://img.b2bpic.net/free-photo/asian-food-box-right-corner-copy-space_23-2148242623.jpg" },
|
||||
]}
|
||||
title="Signature Flavors"
|
||||
description="Explore our crowd-favorite dishes, crafted daily."
|
||||
@@ -208,46 +111,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Fresh Preparation",
|
||||
description: "Made to order every time.",
|
||||
bentoComponent: "icon-info-cards",
|
||||
items: [
|
||||
{
|
||||
icon: ChefHat,
|
||||
label: "Quality",
|
||||
value: "100%",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tangerines-money-bag_23-2147746175.jpg",
|
||||
imageAlt: "Tangerines and money bag",
|
||||
title: "Fresh Preparation", description: "Made to order every time.", bentoComponent: "icon-info-cards", items: [{ icon: ChefHat, label: "Quality", value: "100%" }]
|
||||
},
|
||||
{
|
||||
title: "Local Delivery",
|
||||
description: "To Brynmawr and beyond.",
|
||||
bentoComponent: "icon-info-cards",
|
||||
items: [
|
||||
{
|
||||
icon: Truck,
|
||||
label: "Service",
|
||||
value: "Fast",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-teapot-tangerines-chinese-new-year_23-2148358111.jpg?_wi=2",
|
||||
imageAlt: "Tangerines and money bag",
|
||||
title: "Local Delivery", description: "To Brynmawr and beyond.", bentoComponent: "icon-info-cards", items: [{ icon: Truck, label: "Service", value: "Fast" }]
|
||||
},
|
||||
{
|
||||
title: "Authentic Recipes",
|
||||
description: "Tradition in every bite.",
|
||||
bentoComponent: "icon-info-cards",
|
||||
items: [
|
||||
{
|
||||
icon: Utensils,
|
||||
label: "Taste",
|
||||
value: "Original",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-eating-asian-food_23-2150288323.jpg?_wi=2",
|
||||
imageAlt: "Tangerines and money bag",
|
||||
title: "Authentic Recipes", description: "Tradition in every bite.", bentoComponent: "icon-info-cards", items: [{ icon: Utensils, label: "Taste", value: "Original" }]
|
||||
},
|
||||
]}
|
||||
title="Why Choose The Wongs?"
|
||||
@@ -261,41 +131,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Steve Hunt",
|
||||
role: "Local Guide",
|
||||
testimonial: "Excellent Chinese takeaway, my go-to.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-smiling-cute-barista-girl-pouring-filter-coffee-making-order-cafe-client_1258-203375.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "TS22",
|
||||
role: "Local Guide",
|
||||
testimonial: "Always hot, flavorsome, and plentiful.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiling-woman-holding-apples-looking-camera_23-2148076026.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Louis Jordan",
|
||||
role: "Local Guide",
|
||||
testimonial: "The satay sauce is stunning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Anna Baczmanska",
|
||||
role: "Local Guide",
|
||||
testimonial: "Best curry I ever had.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-with-paper-wrapped-sandwich_23-2151309945.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Gary Brooks",
|
||||
role: "Local Guide",
|
||||
testimonial: "Tried the rest, now try the best.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-corn-dog_23-2149929404.jpg",
|
||||
},
|
||||
{ id: "1", name: "Steve Hunt", role: "Local Guide", testimonial: "Excellent Chinese takeaway, my go-to.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-smiling-cute-barista-girl-pouring-filter-coffee-making-order-cafe-client_1258-203375.jpg" },
|
||||
{ id: "2", name: "TS22", role: "Local Guide", testimonial: "Always hot, flavorsome, and plentiful.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiling-woman-holding-apples-looking-camera_23-2148076026.jpg" },
|
||||
{ id: "3", name: "Louis Jordan", role: "Local Guide", testimonial: "The satay sauce is stunning.", imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg" },
|
||||
{ id: "4", name: "Anna Baczmanska", role: "Local Guide", testimonial: "Best curry I ever had.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-with-paper-wrapped-sandwich_23-2151309945.jpg" },
|
||||
{ id: "5", name: "Gary Brooks", role: "Local Guide", testimonial: "Tried the rest, now try the best.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-corn-dog_23-2149929404.jpg" },
|
||||
]}
|
||||
title="Community Voices"
|
||||
description="What our customers are saying about us."
|
||||
@@ -307,21 +147,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do you deliver?",
|
||||
content: "Yes, we offer delivery to Brynmawr and surrounding areas.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "What are your opening hours?",
|
||||
content: "We are open 7 days a week from 5:00 PM to 11:00 PM.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Is parking available?",
|
||||
content: "Yes, there is a free public car park within walking distance.",
|
||||
},
|
||||
{ id: "1", title: "Do you deliver?", content: "Yes, we offer delivery to Brynmawr and surrounding areas." },
|
||||
{ id: "2", title: "What are your opening hours?", content: "We are open 7 days a week from 5:00 PM to 11:00 PM." },
|
||||
{ id: "3", title: "Is parking available?", content: "Yes, there is a free public car park within walking distance." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -334,9 +162,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Contact"
|
||||
title="Order Tonight"
|
||||
description="Call us to place your order for delivery or collection."
|
||||
@@ -349,17 +175,11 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="The Wongs"
|
||||
leftLink={{
|
||||
text: "Terms & Conditions",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
leftLink={{ text: "Terms & Conditions", href: "#" }}
|
||||
rightLink={{ text: "Privacy Policy", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user