Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
281
src/app/page.tsx
281
src/app/page.tsx
@@ -31,91 +31,39 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Golden Chopsticks"
|
||||
button={{ text: "Book a Table", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Exquisite Flavors, Golden Memories."
|
||||
description="Experience the perfect fusion of traditional recipes and modern culinary techniques at Golden Chopsticks. Authentic flavors delivered with elegance."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Table",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#products",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Book a Table", href: "#contact" }, { text: "View Menu", href: "#products" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157821.jpg"
|
||||
imageAlt="Aesthetic interior of Golden Chopsticks"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg",
|
||||
alt: "Happy woman enjoying at dining table",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/friends-talking-by-lunch_1098-14622.jpg",
|
||||
alt: "Friends talking by lunch",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/man-presents-girl-ring_1398-4220.jpg",
|
||||
alt: "Man presents girl ring",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/attractive-happy-young-bearded-man-trendy-hat-texting-messages-via-social-networks-browsing-internet-using-free-wifi-his-electronic-device-coffee-break-restaurant_273609-1934.jpg",
|
||||
alt: "Man texting messages",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-woman-holding-hands-with-her-lover_23-2148060335.jpg",
|
||||
alt: "Woman holding hands with her lover",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg", alt: "Happy woman enjoying at dining table" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/friends-talking-by-lunch_1098-14622.jpg", alt: "Friends talking by lunch" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/man-presents-girl-ring_1398-4220.jpg", alt: "Man presents girl ring" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/attractive-happy-young-bearded-man-trendy-hat-texting-messages-via-social-networks-browsing-internet-using-free-wifi-his-electronic-device-coffee-break-restaurant_273609-1934.jpg", alt: "Man texting messages" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/front-view-woman-holding-hands-with-her-lover_23-2148060335.jpg", alt: "Woman holding hands with her lover" },
|
||||
]}
|
||||
avatarText="Loved by over 50k happy guests"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Traditional Recipes",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Modern Techniques",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fresh Ingredients",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Sophisticated Atmosphere",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Culinary Excellence",
|
||||
},
|
||||
{ type: "text", text: "Traditional Recipes" },
|
||||
{ type: "text", text: "Modern Techniques" },
|
||||
{ type: "text", text: "Fresh Ingredients" },
|
||||
{ type: "text", text: "Sophisticated Atmosphere" },
|
||||
{ type: "text", text: "Culinary Excellence" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -124,15 +72,8 @@ export default function LandingPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Our Culinary Heritage",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/male-chef-kitchen-cooking_23-2148934670.jpg",
|
||||
alt: "Chef at work",
|
||||
},
|
||||
{ type: "text", content: "Our Culinary Heritage" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/male-chef-kitchen-cooking_23-2148934670.jpg", alt: "Chef at work" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -144,42 +85,12 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Dragon Roll",
|
||||
price: "$18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-bowl-filled-with-noodle-soup-corn-grey-cloth-with-garlic-mushrooms_23-2148320824.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Steamed Dim Sum",
|
||||
price: "$12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-sushi-set-top-view_140725-5596.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Wok-Tossed Greens",
|
||||
price: "$14",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/eclairs-with-colorful-syrups-white-plate_114579-16509.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Ginger Soy Salmon",
|
||||
price: "$24",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/egg-roll-fried-spring-rolls-white-plate-thai-food_1150-21498.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Crispy Spring Rolls",
|
||||
price: "$9",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tom-yum-with-shrimp-crab-with-lime-chili-tomato-garlic-lemongrass-kaffir-lime-leaves_1150-25806.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Spicy Thai Curry",
|
||||
price: "$20",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-broccoli-bell-pepper-cups-plate_23-2148382814.jpg",
|
||||
},
|
||||
{ id: "1", name: "Dragon Roll", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/black-bowl-filled-with-noodle-soup-corn-grey-cloth-with-garlic-mushrooms_23-2148320824.jpg" },
|
||||
{ id: "2", name: "Steamed Dim Sum", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/various-sushi-set-top-view_140725-5596.jpg" },
|
||||
{ id: "3", name: "Wok-Tossed Greens", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/eclairs-with-colorful-syrups-white-plate_114579-16509.jpg" },
|
||||
{ id: "4", name: "Ginger Soy Salmon", price: "$24", imageSrc: "http://img.b2bpic.net/free-photo/egg-roll-fried-spring-rolls-white-plate-thai-food_1150-21498.jpg" },
|
||||
{ id: "5", name: "Crispy Spring Rolls", price: "$9", imageSrc: "http://img.b2bpic.net/free-photo/tom-yum-with-shrimp-crab-with-lime-chili-tomato-garlic-lemongrass-kaffir-lime-leaves_1150-25806.jpg" },
|
||||
{ id: "6", name: "Spicy Thai Curry", price: "$20", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-broccoli-bell-pepper-cups-plate_23-2148382814.jpg" },
|
||||
]}
|
||||
title="Signature Dishes"
|
||||
description="Explore our chef-curated selection of traditional Asian delicacies."
|
||||
@@ -188,44 +99,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah L.",
|
||||
handle: "@sarahl",
|
||||
testimonial: "The best dining experience I've had in a long time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-asian-woman-shows-thumbs-up-approves-likes-smth-good-stands-near-cafe-entrance-give-her_1258-199002.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael R.",
|
||||
handle: "@miker",
|
||||
testimonial: "Authentic, sophisticated, and perfectly prepared.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-businesswoman-coat-sitting-outside-cafe-reading-magazine_1303-19470.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily C.",
|
||||
handle: "@emilyc",
|
||||
testimonial: "Love the ambiance and the service. Will be back!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David W.",
|
||||
handle: "@davidw",
|
||||
testimonial: "Outstanding sushi! Fresh and creative combinations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-enjoying-working-day-is-having-coffee-break-outdoor-cafe-cheerful-lady-with-coffee-hand_291650-1354.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jessica B.",
|
||||
handle: "@jessb",
|
||||
testimonial: "A wonderful evening, staff is so welcoming.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-positive-young-man-holding-glass-wine_23-2148454112.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah L.", handle: "@sarahl", testimonial: "The best dining experience I've had in a long time.", imageSrc: "http://img.b2bpic.net/free-photo/happy-asian-woman-shows-thumbs-up-approves-likes-smth-good-stands-near-cafe-entrance-give-her_1258-199002.jpg" },
|
||||
{ id: "2", name: "Michael R.", handle: "@miker", testimonial: "Authentic, sophisticated, and perfectly prepared.", imageSrc: "http://img.b2bpic.net/free-photo/elderly-businesswoman-coat-sitting-outside-cafe-reading-magazine_1303-19470.jpg" },
|
||||
{ id: "3", name: "Emily C.", handle: "@emilyc", testimonial: "Love the ambiance and the service. Will be back!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg" },
|
||||
{ id: "4", name: "David W.", handle: "@davidw", testimonial: "Outstanding sushi! Fresh and creative combinations.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-enjoying-working-day-is-having-coffee-break-outdoor-cafe-cheerful-lady-with-coffee-hand_291650-1354.jpg" },
|
||||
{ id: "5", name: "Jessica B.", handle: "@jessb", testimonial: "A wonderful evening, staff is so welcoming.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-positive-young-man-holding-glass-wine_23-2148454112.jpg" },
|
||||
]}
|
||||
title="Guest Experiences"
|
||||
description="What our patrons say about their dining experience."
|
||||
@@ -238,27 +120,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "15+",
|
||||
title: "Years Experience",
|
||||
description: "Delivering culinary art.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tables-chairs-arranged-empty-coffee-shop_107420-96463.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "100+",
|
||||
title: "Recipes",
|
||||
description: "Fresh, authentic ingredients.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cooking-food-family_23-2149228719.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "50k+",
|
||||
title: "Happy Guests",
|
||||
description: "Served with warmth.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-waitress-serving-coffee-couple-who-is-eating-cake-cafe_637285-9100.jpg",
|
||||
},
|
||||
{ id: "1", value: "15+", title: "Years Experience", description: "Delivering culinary art.", imageSrc: "http://img.b2bpic.net/free-photo/tables-chairs-arranged-empty-coffee-shop_107420-96463.jpg" },
|
||||
{ id: "2", value: "100+", title: "Recipes", description: "Fresh, authentic ingredients.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cooking-food-family_23-2149228719.jpg" },
|
||||
{ id: "3", value: "50k+", title: "Happy Guests", description: "Served with warmth.", imageSrc: "http://img.b2bpic.net/free-photo/happy-waitress-serving-coffee-couple-who-is-eating-cake-cafe_637285-9100.jpg" },
|
||||
]}
|
||||
title="By The Numbers"
|
||||
description="Celebrating our passion for excellence in every dish."
|
||||
@@ -270,12 +134,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Michelin Selection",
|
||||
"Food & Wine Magazine",
|
||||
"Best of the City",
|
||||
"Culinary Arts Guild",
|
||||
"Epicurean Journal",
|
||||
]}
|
||||
"Michelin Selection", "Food & Wine Magazine", "Best of the City", "Culinary Arts Guild", "Epicurean Journal"]}
|
||||
title="Recognized Excellence"
|
||||
description="Honored by the culinary community."
|
||||
/>
|
||||
@@ -286,21 +145,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do you offer reservations?",
|
||||
content: "Yes, we recommend booking in advance.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Are there vegetarian options?",
|
||||
content: "Yes, we have many thoughtful vegetarian dishes.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Do you host private events?",
|
||||
content: "Contact us to plan your private or corporate party.",
|
||||
},
|
||||
{ id: "1", title: "Do you offer reservations?", content: "Yes, we recommend booking in advance." },
|
||||
{ id: "2", title: "Are there vegetarian options?", content: "Yes, we have many thoughtful vegetarian dishes." },
|
||||
{ id: "3", title: "Do you host private events?", content: "Contact us to plan your private or corporate party." },
|
||||
]}
|
||||
title="Frequently Asked"
|
||||
description="Common questions about our restaurant."
|
||||
@@ -311,9 +158,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
tag="Newsletter"
|
||||
title="Stay Connected"
|
||||
description="Join our newsletter for updates and seasonal menu reveals."
|
||||
@@ -324,53 +169,13 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="Golden Chopsticks"
|
||||
columns={[
|
||||
{
|
||||
title: "Visit Us",
|
||||
items: [
|
||||
{
|
||||
label: "123 Culinary St, City",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Mon-Sun: 11am-10pm",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Information",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Visit Us", items: [{ label: "123 Culinary St, City", href: "#" }, { label: "Mon-Sun: 11am-10pm", href: "#" }] },
|
||||
{ title: "Information", items: [{ label: "About Us", href: "#about" }, { label: "Menu", href: "#products" }, { label: "Contact", href: "#contact" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user