Merge version_1 into main #2
203
src/app/page.tsx
203
src/app/page.tsx
@@ -29,22 +29,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Story",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Experiences",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Reservations",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Story", id: "about" },
|
||||
{ name: "Experiences", id: "testimonials" },
|
||||
{ name: "Reservations", id: "contact" },
|
||||
]}
|
||||
brandName="DiningHub"
|
||||
/>
|
||||
@@ -52,69 +40,25 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="A Symphony of Flavors"
|
||||
description="Discover culinary excellence crafted with passion and fresh, local ingredients in a warm, inviting atmosphere."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-woman-having-fun-while-being-fed-by-her-boyfriend-meal-dining-room_637285-3192.jpg",
|
||||
alt: "Diner 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/sushi-dish-asian-restaurant_23-2148195562.jpg",
|
||||
alt: "Diner 2",
|
||||
},
|
||||
{
|
||||
asset: "testimonial-3",
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-girl-having-coffee-outdoors-cafe_231208-10719.jpg",
|
||||
alt: "Diner 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-drinking-talking-get-together_23-2149187055.jpg",
|
||||
alt: "Diner 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/classic-luxury-restaurant-with-tables-chairs_140725-9388.jpg",
|
||||
alt: "Diner 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-woman-having-fun-while-being-fed-by-her-boyfriend-meal-dining-room_637285-3192.jpg", alt: "Diner 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/sushi-dish-asian-restaurant_23-2148195562.jpg", alt: "Diner 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/beautiful-girl-having-coffee-outdoors-cafe_231208-10719.jpg", alt: "Diner 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/people-drinking-talking-get-together_23-2149187055.jpg", alt: "Diner 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/classic-luxury-restaurant-with-tables-chairs_140725-9388.jpg", alt: "Diner 5" },
|
||||
]}
|
||||
avatarText="Join 5,000+ satisfied guests"
|
||||
buttons={[
|
||||
{
|
||||
text: "Reserve Table",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#products",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Reserve Table", href: "#contact" }, { text: "View Menu", href: "#products" }]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Locally Sourced",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Award Winning",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Seasonal Menu",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Fine Dining",
|
||||
icon: Utensils,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Artisan Craft",
|
||||
},
|
||||
{ type: "text", text: "Locally Sourced" },
|
||||
{ type: "text-icon", text: "Award Winning", icon: Award },
|
||||
{ type: "text", text: "Seasonal Menu" },
|
||||
{ type: "text-icon", text: "Fine Dining", icon: Utensils },
|
||||
{ type: "text", text: "Artisan Craft" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -123,22 +67,10 @@ export default function LandingPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Our Culinary Journey",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/mixed-race-baker-makes-cake-smash-eggs_633478-1132.jpg",
|
||||
alt: "Chef cooking",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "#about",
|
||||
},
|
||||
{ type: "text", content: "Our Culinary Journey" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/mixed-race-baker-makes-cake-smash-eggs_633478-1132.jpg", alt: "Chef cooking" },
|
||||
]}
|
||||
buttons={[{ text: "Learn More", href: "#about" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -149,27 +81,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Pan-Seared Scallops",
|
||||
price: "$38.00",
|
||||
variant: "Starters",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-shrimps-with-cucumber-rolls-table_140725-6658.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Garden Harvest Salad",
|
||||
price: "$24.00",
|
||||
variant: "Fresh",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-table-full-delicious-food-assortment_23-2149141333.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Velvet Chocolate Tart",
|
||||
price: "$18.00",
|
||||
variant: "Desserts",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-cup-tea-light-dark-background_140725-80167.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Pan-Seared Scallops", price: "$38.00", variant: "Starters", imageSrc: "http://img.b2bpic.net/free-photo/fried-shrimps-with-cucumber-rolls-table_140725-6658.jpg" },
|
||||
{ id: "p2", name: "Garden Harvest Salad", price: "$24.00", variant: "Fresh", imageSrc: "http://img.b2bpic.net/free-photo/top-view-table-full-delicious-food-assortment_23-2149141333.jpg" },
|
||||
{ id: "p3", name: "Velvet Chocolate Tart", price: "$18.00", variant: "Desserts", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-cup-tea-light-dark-background_140725-80167.jpg" },
|
||||
]}
|
||||
title="Signature Dishes"
|
||||
description="Experience our carefully curated menu, prepared by award-winning chefs using seasonal harvests."
|
||||
@@ -181,46 +95,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Exquisite",
|
||||
quote: "The atmosphere and flavors were perfectly balanced. A truly exceptional evening.",
|
||||
name: "Sarah Johnson",
|
||||
role: "Regular Guest",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-having-fun-while-being-fed-by-her-boyfriend-meal-dining-room_637285-3192.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Unforgettable",
|
||||
quote: "Simply the best dining experience I've had in years. Highly recommended.",
|
||||
name: "Michael Chen",
|
||||
role: "Food Enthusiast",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sushi-dish-asian-restaurant_23-2148195562.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Authentic",
|
||||
quote: "You can taste the dedication in every single ingredient. Absolutely authentic.",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Local Resident",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-having-coffee-outdoors-cafe_231208-10719.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Masterpiece",
|
||||
quote: "The plating alone is art, but the taste is the real masterpiece here.",
|
||||
name: "David Kim",
|
||||
role: "Critics Pick",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-drinking-talking-get-together_23-2149187055.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Wonderful",
|
||||
quote: "A hidden gem in the city. Every bite was an experience.",
|
||||
name: "Jane Doe",
|
||||
role: "Foodie",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-having-fun-while-being-fed-by-her-boyfriend-meal-dining-room_637285-3192.jpg?_wi=2",
|
||||
},
|
||||
{ id: "1", title: "Exquisite", quote: "The atmosphere and flavors were perfectly balanced. A truly exceptional evening.", name: "Sarah Johnson", role: "Regular Guest", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-having-fun-while-being-fed-by-her-boyfriend-meal-dining-room_637285-3192.jpg" },
|
||||
{ id: "2", title: "Unforgettable", quote: "Simply the best dining experience I've had in years. Highly recommended.", name: "Michael Chen", role: "Food Enthusiast", imageSrc: "http://img.b2bpic.net/free-photo/sushi-dish-asian-restaurant_23-2148195562.jpg" },
|
||||
{ id: "3", title: "Authentic", quote: "You can taste the dedication in every single ingredient. Absolutely authentic.", name: "Emily Rodriguez", role: "Local Resident", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-having-coffee-outdoors-cafe_231208-10719.jpg" },
|
||||
{ id: "4", title: "Masterpiece", quote: "The plating alone is art, but the taste is the real masterpiece here.", name: "David Kim", role: "Critics Pick", imageSrc: "http://img.b2bpic.net/free-photo/people-drinking-talking-get-together_23-2149187055.jpg" },
|
||||
{ id: "5", title: "Wonderful", quote: "A hidden gem in the city. Every bite was an experience.", name: "Jane Doe", role: "Foodie", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-having-fun-while-being-fed-by-her-boyfriend-meal-dining-room_637285-3192.jpg" },
|
||||
]}
|
||||
title="Guest Reflections"
|
||||
description="Hear what our beloved patrons have to say about their unforgettable dining experiences."
|
||||
@@ -230,9 +109,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "downward-rays-animated",
|
||||
}}
|
||||
background={{ variant: "downward-rays-animated" }}
|
||||
tag="Reservations"
|
||||
title="Book Your Table"
|
||||
description="Join us for an intimate and memorable culinary adventure."
|
||||
@@ -244,30 +121,10 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-honeymoon-venice_1303-5680.jpg"
|
||||
columns={[
|
||||
{
|
||||
title: "Dining",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "Reserve",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
title: "Dining", items: [{ label: "Menu", href: "#products" }, { label: "Reserve", href: "#contact" }],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "Story",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
title: "Company", items: [{ label: "Story", href: "#about" }, { label: "Contact", href: "#contact" }],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user