Merge version_2 into main #2
@@ -27,14 +27,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "home"},
|
||||
{
|
||||
name: "Our Menu", id: "menu"},
|
||||
{
|
||||
name: "Reserve Table", id: "book"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Our Menu", id: "menu" },
|
||||
{ name: "Reserve Table", id: "book" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="WokDynasty"
|
||||
/>
|
||||
@@ -42,25 +38,18 @@ export default function LandingPage() {
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="The Art of Indo-Chinese Cuisine"
|
||||
description="Experience the bold, fiery flavors of WokDynasty. Where tradition meets modern flair."
|
||||
avatars={[
|
||||
{
|
||||
src: "asset://avatar-1", alt: "Chef 1"},
|
||||
{
|
||||
src: "asset://avatar-2", alt: "Chef 2"},
|
||||
{
|
||||
src: "asset://avatar-3", alt: "Chef 3"},
|
||||
{
|
||||
src: "asset://avatar-4", alt: "Chef 4"},
|
||||
{ src: "https://images.unsplash.com/photo-1577219491135-ce101131109a?q=80&w=200&h=200", alt: "Chef 1" },
|
||||
{ src: "https://images.unsplash.com/photo-1583394293214-28ded15ee0c5?q=80&w=200&h=200", alt: "Chef 2" },
|
||||
{ src: "https://images.unsplash.com/photo-1595295333158-4742f28fbd85?q=80&w=200&h=200", alt: "Chef 3" },
|
||||
{ src: "https://images.unsplash.com/photo-1581299894007-aaa50297cf16?q=80&w=200&h=200", alt: "Chef 4" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu", href: "#menu"},
|
||||
{
|
||||
text: "Book Table", href: "#book"},
|
||||
{ text: "View Menu", href: "#menu" },
|
||||
{ text: "Book Table", href: "#book" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -70,7 +59,8 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Story"
|
||||
description={[
|
||||
"Born from a passion for authentic spice and culinary innovation, WokDynasty brings the best of Indo-Chinese fusion to your table.", "Every dish is crafted with fresh ingredients, signature sauces, and over 20 years of expertise."]}
|
||||
"Born from a passion for authentic spice and culinary innovation, WokDynasty brings the best of Indo-Chinese fusion to your table.", "Every dish is crafted with fresh ingredients, signature sauces, and over 20 years of expertise."
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -81,15 +71,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Chef's Special", name: "Dragon Chili Chicken", price: "$18", rating: 5,
|
||||
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/brazilian-family-enjoying-meal-together_23-2151156211.jpg"},
|
||||
{
|
||||
id: "2", brand: "Stir Fry", name: "Wok-Tossed Hakka Noodles", price: "$14", rating: 5,
|
||||
reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/uncooked-noodle-nests-blue-bowl_114579-88292.jpg"},
|
||||
{
|
||||
id: "3", brand: "Vegetarian", name: "Schezwan Fried Rice", price: "$13", rating: 4,
|
||||
reviewCount: "88", imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269162.jpg"},
|
||||
{ id: "1", brand: "Chef's Special", name: "Dragon Chili Chicken", price: "$18", rating: 5, reviewCount: "120", imageSrc: "https://images.unsplash.com/photo-1603133872878-684f2089fb4b?q=80&w=800&h=600" },
|
||||
{ id: "2", brand: "Stir Fry", name: "Wok-Tossed Hakka Noodles", price: "$14", rating: 5, reviewCount: "95", imageSrc: "https://images.unsplash.com/photo-1585032226651-759b368d7246?q=80&w=800&h=600" },
|
||||
{ id: "3", brand: "Vegetarian", name: "Schezwan Fried Rice", price: "$13", rating: 4, reviewCount: "88", imageSrc: "https://images.unsplash.com/photo-1596560344102-969d77f80695?q=80&w=800&h=600" },
|
||||
]}
|
||||
title="Signature Menu"
|
||||
description="Discover our chef-curated selection of fusion delicacies."
|
||||
@@ -99,16 +83,13 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient"}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Get in Touch"
|
||||
title="Reserve Your Table"
|
||||
description="Call us at 7289971983 or fill out the enquiry form below for large party bookings."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now", href: "tel:7289971983"},
|
||||
{
|
||||
text: "Book Online", href: "#"},
|
||||
{ text: "Call Now", href: "tel:7289971983" },
|
||||
{ text: "Book Online", href: "#" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -119,26 +100,20 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Menu", items: [
|
||||
{
|
||||
label: "Full Menu", href: "#menu"},
|
||||
{
|
||||
label: "Specials", href: "#menu"},
|
||||
{ label: "Full Menu", href: "#menu" },
|
||||
{ label: "Specials", href: "#menu" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Reserve", items: [
|
||||
{
|
||||
label: "Booking", href: "#book"},
|
||||
{
|
||||
label: "Enquiry", href: "#contact"},
|
||||
{ label: "Booking", href: "#book" },
|
||||
{ label: "Enquiry", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "7289971983", href: "tel:7289971983"},
|
||||
{
|
||||
label: "Email Us", href: "mailto:hello@wokdynasty.com"},
|
||||
{ label: "7289971983", href: "tel:7289971983" },
|
||||
{ label: "Email Us", href: "mailto:hello@wokdynasty.com" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -147,4 +122,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user