Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
188
src/app/page.tsx
188
src/app/page.tsx
@@ -30,21 +30,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
name: "Menu", id: "products"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Lumière Bistro"
|
||||
/>
|
||||
@@ -53,38 +45,19 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="A Symphony of Flavors"
|
||||
description="Experience culinary artistry in an atmosphere designed for unforgettable memories."
|
||||
tag="Since 1998"
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Table",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Book a Table", href: "#contact"},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg",
|
||||
imageAlt: "Elegant dining interior",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg", imageAlt: "Elegant dining interior"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-slices-steak-with-herbs-spices-white-plate_114579-28878.jpg?_wi=1",
|
||||
imageAlt: "Signature steak dish",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-seafood-spaghetti-with-mussels-shrimp-tomato-sauce-parsley_141793-2167.jpg?_wi=1",
|
||||
imageAlt: "Seafood pasta plate",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assorted-fruit-cheese-plate-close-up-delicious-food-plate_132075-5743.jpg?_wi=1",
|
||||
imageAlt: "Gourmet cheese board",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-cooking_23-2148723237.jpg",
|
||||
imageAlt: "Chef preparing dish",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-slices-steak-with-herbs-spices-white-plate_114579-28878.jpg", imageAlt: "Signature steak dish"}
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
rating={5}
|
||||
@@ -99,24 +72,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Crafting Excellence",
|
||||
},
|
||||
type: "text", content: "Crafting Excellence"},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-man-cooking_23-2148723237.jpg",
|
||||
alt: "Executive Chef",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/medium-shot-man-cooking_23-2148723237.jpg", alt: "Executive Chef"},
|
||||
{
|
||||
type: "text",
|
||||
content: "Every Plate Tells a Story.",
|
||||
},
|
||||
type: "text", content: "Every Plate Tells a Story."},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Our Philosophy",
|
||||
href: "#",
|
||||
},
|
||||
text: "Our Philosophy", href: "#"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -130,59 +94,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Main",
|
||||
name: "Pan-Seared Wagyu",
|
||||
price: "$48",
|
||||
rating: 5,
|
||||
reviewCount: "124",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-slices-steak-with-herbs-spices-white-plate_114579-28878.jpg?_wi=2",
|
||||
},
|
||||
id: "p1", brand: "Main", name: "Pan-Seared Wagyu", price: "$48", rating: 5,
|
||||
reviewCount: "124", imageSrc: "http://img.b2bpic.net/free-photo/two-slices-steak-with-herbs-spices-white-plate_114579-28878.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Starter",
|
||||
name: "Artisan Garden Salad",
|
||||
price: "$18",
|
||||
rating: 5,
|
||||
reviewCount: "89",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-stuffed-tomatoes-with-sauce-leaf-lettuce-with-sliced-lemon-dried-barberry_141793-5124.jpg",
|
||||
},
|
||||
id: "p2", brand: "Starter", name: "Artisan Garden Salad", price: "$18", rating: 5,
|
||||
reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/side-view-stuffed-tomatoes-with-sauce-leaf-lettuce-with-sliced-lemon-dried-barberry_141793-5124.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Main",
|
||||
name: "Truffle Infused Pasta",
|
||||
price: "$34",
|
||||
rating: 4,
|
||||
reviewCount: "210",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-seafood-spaghetti-with-mussels-shrimp-tomato-sauce-parsley_141793-2167.jpg?_wi=2",
|
||||
},
|
||||
id: "p3", brand: "Main", name: "Truffle Infused Pasta", price: "$34", rating: 4,
|
||||
reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/top-view-seafood-spaghetti-with-mussels-shrimp-tomato-sauce-parsley_141793-2167.jpg"},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Dessert",
|
||||
name: "Dark Chocolate Ganache",
|
||||
price: "$15",
|
||||
rating: 5,
|
||||
reviewCount: "150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-creamy-cake-with-chocolate-raisins-light-dark-background-cookie-sweet-biscuit-dessert-sugar_140725-141742.jpg",
|
||||
},
|
||||
id: "p4", brand: "Dessert", name: "Dark Chocolate Ganache", price: "$15", rating: 5,
|
||||
reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-creamy-cake-with-chocolate-raisins-light-dark-background-cookie-sweet-biscuit-dessert-sugar_140725-141742.jpg"},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Side",
|
||||
name: "Roasted Forest Vegetables",
|
||||
price: "$12",
|
||||
rating: 4,
|
||||
reviewCount: "45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/caesar-salad-with-fresh-vegetable-chicken-salad-white-plate-wood-table-delicious-salad_114579-113.jpg",
|
||||
},
|
||||
id: "p5", brand: "Side", name: "Roasted Forest Vegetables", price: "$12", rating: 4,
|
||||
reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/caesar-salad-with-fresh-vegetable-chicken-salad-white-plate-wood-table-delicious-salad_114579-113.jpg"},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Starter",
|
||||
name: "European Cheese Trio",
|
||||
price: "$22",
|
||||
rating: 5,
|
||||
reviewCount: "67",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assorted-fruit-cheese-plate-close-up-delicious-food-plate_132075-5743.jpg?_wi=2",
|
||||
},
|
||||
id: "p6", brand: "Starter", name: "European Cheese Trio", price: "$22", rating: 5,
|
||||
reviewCount: "67", imageSrc: "http://img.b2bpic.net/free-photo/assorted-fruit-cheese-plate-close-up-delicious-food-plate_132075-5743.jpg"},
|
||||
]}
|
||||
title="Our Signature Menu"
|
||||
description="Exquisitely curated dishes prepared with locally sourced seasonal ingredients."
|
||||
@@ -199,25 +127,15 @@ export default function LandingPage() {
|
||||
author="Elena Rossi"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-photo-beautiful-lady-sitting-restaurant-smiling-camera_114579-92383.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-photo-beautiful-lady-sitting-restaurant-smiling-camera_114579-92383.jpg", alt: "Customer 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-old-man-having-meal-restaurant_23-2148214633.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-old-man-having-meal-restaurant_23-2148214633.jpg", alt: "Customer 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/glad-african-american-young-woman-rests-alone-coffee-shop-has-delighted-look-rests-after-work-laptop-computer-has-positive-expression_273609-3414.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/glad-african-american-young-woman-rests-alone-coffee-shop-has-delighted-look-rests-after-work-laptop-computer-has-positive-expression_273609-3414.jpg", alt: "Customer 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg", alt: "Customer 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-happy-woman-holding-glass_23-2148965394.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-happy-woman-holding-glass_23-2148965394.jpg", alt: "Customer 5"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -228,8 +146,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
tag="Visit Us"
|
||||
title="Book Your Experience"
|
||||
description="We look forward to welcoming you to our table. Reach out for reservations."
|
||||
@@ -243,54 +160,33 @@ export default function LandingPage() {
|
||||
logoText="Lumière Bistro"
|
||||
columns={[
|
||||
{
|
||||
title: "Information",
|
||||
items: [
|
||||
title: "Information", items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About", href: "#about"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Careers", href: "#"},
|
||||
{
|
||||
label: "Press",
|
||||
href: "#",
|
||||
},
|
||||
label: "Press", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
title: "Menu", items: [
|
||||
{
|
||||
label: "Dinner",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Dinner", href: "#products"},
|
||||
{
|
||||
label: "Wine List",
|
||||
href: "#",
|
||||
},
|
||||
label: "Wine List", href: "#"},
|
||||
{
|
||||
label: "Private Dining",
|
||||
href: "#",
|
||||
},
|
||||
label: "Private Dining", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow",
|
||||
items: [
|
||||
title: "Follow", items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "Twitter",
|
||||
href: "#",
|
||||
},
|
||||
label: "Twitter", href: "#"},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
label: "Facebook", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user