Update src/app/page.tsx
This commit is contained in:
139
src/app/page.tsx
139
src/app/page.tsx
@@ -28,31 +28,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Reservations",
|
||||
id: "/reservations",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Reservations", id: "/reservations" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Book Now",
|
||||
href: "/reservations",
|
||||
}}
|
||||
button={{ text: "Book Now", href: "/reservations" }}
|
||||
brandName="Lumière Dining"
|
||||
/>
|
||||
</div>
|
||||
@@ -61,14 +43,9 @@ export default function LandingPage() {
|
||||
<HeroLogo
|
||||
logoText="Lumière Dining"
|
||||
description="Experience culinary artistry in the heart of the city. A sophisticated blend of tradition and modern innovation."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a table",
|
||||
href: "/reservations",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Book a table", href: "/reservations" }]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg"
|
||||
imageAlt="Luxurious restaurant atmosphere"
|
||||
/>
|
||||
</div>
|
||||
@@ -80,36 +57,11 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Pan-Seared Salmon",
|
||||
price: "$38",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-shrimp-soaked-fish-sauce-thai-food_1150-22764.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Aged Filet Mignon",
|
||||
price: "$52",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cook-cutting-roasted-meat-board_23-2148040153.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Deconstructed Tart",
|
||||
price: "$18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/decorative-cake-slices-tray-orchid-flower-bouquet_23-2148028530.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Truffle Risotto",
|
||||
price: "$29",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-shrimp-soaked-fish-sauce-thai-food_1150-22764.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Seared Scallops",
|
||||
price: "$34",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cook-cutting-roasted-meat-board_23-2148040153.jpg?_wi=2",
|
||||
},
|
||||
{ id: "1", name: "Pan-Seared Salmon", price: "$38", imageSrc: "http://img.b2bpic.net/free-photo/fresh-shrimp-soaked-fish-sauce-thai-food_1150-22764.jpg" },
|
||||
{ id: "2", name: "Aged Filet Mignon", price: "$52", imageSrc: "http://img.b2bpic.net/free-photo/cook-cutting-roasted-meat-board_23-2148040153.jpg" },
|
||||
{ id: "3", name: "Deconstructed Tart", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/decorative-cake-slices-tray-orchid-flower-bouquet_23-2148028530.jpg" },
|
||||
{ id: "4", name: "Truffle Risotto", price: "$29", imageSrc: "http://img.b2bpic.net/free-photo/fresh-shrimp-soaked-fish-sauce-thai-food_1150-22764.jpg" },
|
||||
{ id: "5", name: "Seared Scallops", price: "$34", imageSrc: "http://img.b2bpic.net/free-photo/cook-cutting-roasted-meat-board_23-2148040153.jpg" },
|
||||
]}
|
||||
title="Signature Creations"
|
||||
description="Our chef's hand-picked seasonal favorites crafted with precision."
|
||||
@@ -123,46 +75,11 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Alex R.",
|
||||
role: "Food Critic",
|
||||
company: "Fine Dining Weekly",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-happy-woman-clanging-glasses-wine-table-cafe_23-2148016787.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Elena M.",
|
||||
role: "Local Patron",
|
||||
company: "Neighbor",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-people-bistro_23-2149366453.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Julian B.",
|
||||
role: "Traveler",
|
||||
company: "Visitor",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-pizza-side-view_23-2149872410.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sarah P.",
|
||||
role: "Corporate Client",
|
||||
company: "GrowthCorp",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Marcus V.",
|
||||
role: "Regular",
|
||||
company: "City Resident",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-celebrating-engagement_23-2149212184.jpg",
|
||||
},
|
||||
{ id: "1", name: "Alex R.", role: "Food Critic", company: "Fine Dining Weekly", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/person-happy-woman-clanging-glasses-wine-table-cafe_23-2148016787.jpg" },
|
||||
{ id: "2", name: "Elena M.", role: "Local Patron", company: "Neighbor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-people-bistro_23-2149366453.jpg" },
|
||||
{ id: "3", name: "Julian B.", role: "Traveler", company: "Visitor", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-pizza-side-view_23-2149872410.jpg" },
|
||||
{ id: "4", name: "Sarah P.", role: "Corporate Client", company: "GrowthCorp", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg" },
|
||||
{ id: "5", name: "Marcus V.", role: "Regular", company: "City Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-celebrating-engagement_23-2149212184.jpg" },
|
||||
]}
|
||||
title="What Guests Say"
|
||||
description="Exquisite experiences, memorable moments."
|
||||
@@ -173,33 +90,21 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"The Michelin Guide",
|
||||
"City Dining Weekly",
|
||||
"Gourmet Magazine",
|
||||
"Culinary Excellence",
|
||||
"Foodie World",
|
||||
]}
|
||||
names={["The Michelin Guide", "City Dining Weekly", "Gourmet Magazine", "Culinary Excellence", "Foodie World"]}
|
||||
title="Recognized Excellence"
|
||||
description="Featuring in leading publications for culinary distinction."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="ecommerce" data-section="ecommerce">
|
||||
<ProductCatalog />
|
||||
<ProductCatalog layout="page" />
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Lumière Dining"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Terms of Use",
|
||||
href: "#",
|
||||
}}
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Use", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user