Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0b8c218571 | |||
| f43e0b681c | |||
| 39173800a9 |
139
src/app/page.tsx
139
src/app/page.tsx
@@ -5,14 +5,14 @@ import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import { Award, Sparkles, Users, Utensils, Wine } from "lucide-react";
|
||||
import { Award, Sparkles, Users, Utensils, Wine, Camera } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,12 +32,9 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu", id: "#menu"},
|
||||
{
|
||||
name: "Our Story", id: "#about"},
|
||||
{
|
||||
name: "Reservations", id: "#contact"},
|
||||
{ name: "Menu", id: "#menu" },
|
||||
{ name: "Our Story", id: "#about" },
|
||||
{ name: "Bookings", id: "#contact" },
|
||||
]}
|
||||
brandName="Elysium Dining"
|
||||
/>
|
||||
@@ -45,15 +42,12 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
logoText="Elysium Dining"
|
||||
description="An unforgettable culinary journey where farm-to-table traditions meet modern fine dining elegance."
|
||||
buttons={[
|
||||
{
|
||||
text: "Reserve a Table", href: "#contact"},
|
||||
{
|
||||
text: "View Menu", href: "#menu"},
|
||||
{ text: "Bookings", href: "#contact" },
|
||||
{ text: "View Menu", href: "#menu" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/restaurant-hall-with-turquoise-chairs-white-walls-french-windows-curtains_140725-8450.jpg?_wi=1"
|
||||
imageAlt="Luxurious dining atmosphere"
|
||||
@@ -62,12 +56,17 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
<TestimonialAboutCard
|
||||
tag="The Studio Story"
|
||||
tagIcon={Camera}
|
||||
title="Capturing Culinary Art"
|
||||
description="Elysium Dining was founded in the heart of the city by award-winning photographer Julian Thorne. After years capturing the most refined tables across Europe, Julian turned his lens—and his kitchen—toward creating a studio space where ingredients are treated with the same precision and beauty as a portrait session."
|
||||
subdescription="Our kitchen functions as an open studio, blending the art of fine dining with the raw elegance of locally sourced, seasonal ingredients."
|
||||
icon={Camera}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727991.jpg"
|
||||
imageAlt="Chef working in a modern studio kitchen"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
title="A Legacy of Flavor"
|
||||
description="Born from the passion of heritage ingredients, Elysium Dining brings together artisan techniques and local produce to craft memories on every plate."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/pitahaya-dragon-fruit-still-life-cinematic-dark-style_23-2151566201.jpg?_wi=1"
|
||||
imageAlt="Executive chef at work"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -77,21 +76,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
icon: Sparkles,
|
||||
title: "Fresh Local Sourcing", description: "Partnering with organic family farms for daily fresh deliveries."},
|
||||
{
|
||||
icon: Award,
|
||||
title: "Artisanal Techniques", description: "Classic cooking methods refined for the modern palate."},
|
||||
{
|
||||
icon: Wine,
|
||||
title: "Sommelier Selection", description: "Curated wine pairings from boutique vineyards worldwide."},
|
||||
{
|
||||
icon: Utensils,
|
||||
title: "Seasonal Menus", description: "Dynamic dishes reflecting the best of each harvest season."},
|
||||
{
|
||||
icon: Users,
|
||||
title: "Warm Hospitality", description: "Dedicated service focused on comfort and guest satisfaction."},
|
||||
{ icon: Sparkles, title: "Fresh Local Sourcing", description: "Partnering with organic family farms for daily fresh deliveries." },
|
||||
{ icon: Award, title: "Artisanal Techniques", description: "Classic cooking methods refined for the modern palate." },
|
||||
{ icon: Wine, title: "Sommelier Selection", description: "Curated wine pairings from boutique vineyards worldwide." },
|
||||
{ icon: Utensils, title: "Seasonal Menus", description: "Dynamic dishes reflecting the best of each harvest season." },
|
||||
{ icon: Users, title: "Warm Hospitality", description: "Dedicated service focused on comfort and guest satisfaction." },
|
||||
]}
|
||||
title="Our Culinary Values"
|
||||
description="We believe that exceptional dining starts with intentional choices in sourcing and preparation."
|
||||
@@ -105,24 +94,10 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Main", name: "Pan-Seared Wagyu Beef", price: "$65", rating: 5,
|
||||
reviewCount: "124", imageSrc: "http://img.b2bpic.net/free-photo/top-view-vegetable-meal-with-cutlery-table-food-meal-restaurant-dinner_140725-28355.jpg"},
|
||||
{
|
||||
id: "2", brand: "Main", name: "Linguine al Tartufo", price: "$42", rating: 5,
|
||||
reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/cutlery-sauces-near-pizza_23-2147772096.jpg"},
|
||||
{
|
||||
id: "3", brand: "Dessert", name: "Dark Chocolate Ganache", price: "$18", rating: 5,
|
||||
reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/pair-dessert-topped-with-ice-cream_141793-436.jpg"},
|
||||
{
|
||||
id: "4", brand: "Starter", name: "Seasonal Garden Greens", price: "$22", rating: 4,
|
||||
reviewCount: "76", imageSrc: "http://img.b2bpic.net/free-photo/close-up-spoon-fork-with-salad-background_1150-259.jpg"},
|
||||
{
|
||||
id: "5", brand: "Starter", name: "Handmade Herb Ravioli", price: "$28", rating: 5,
|
||||
reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/pipe-rigate-pasta-bowl-towel-marble-surface_114579-81291.jpg"},
|
||||
{
|
||||
id: "6", brand: "Main", name: "Roasted Forest Risotto", price: "$38", rating: 5,
|
||||
reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/salad-with-red-caviar-salmon-avocado_140725-6797.jpg"},
|
||||
{ id: "1", brand: "Main", name: "Pan-Seared Wagyu Beef", price: "$65", imageSrc: "http://img.b2bpic.net/free-photo/top-view-vegetable-meal-with-cutlery-table-food-meal-restaurant-dinner_140725-28355.jpg", rating: 5, reviewCount: "120" },
|
||||
{ id: "2", brand: "Main", name: "Linguine al Tartufo", price: "$42", imageSrc: "http://img.b2bpic.net/free-photo/cutlery-sauces-near-pizza_23-2147772096.jpg", rating: 4, reviewCount: "95" },
|
||||
{ id: "3", brand: "Dessert", name: "Dark Chocolate Ganache", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/pair-dessert-topped-with-ice-cream_141793-436.jpg", rating: 5, reviewCount: "85" },
|
||||
{ id: "4", brand: "Starter", name: "Seasonal Garden Greens", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/close-up-spoon-fork-with-salad-background_1150-259.jpg", rating: 4, reviewCount: "60" },
|
||||
]}
|
||||
title="Chef's Signature Selections"
|
||||
description="Explore our curated menu designed to offer a complete sensory journey."
|
||||
@@ -134,16 +109,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Julian Thorne", date: "Oct 2023", title: "Critically Acclaimed", quote: "The Wagyu beef was perfection, redefined by balance and texture. A truly stellar culinary experience.", tag: "Dining Review", avatarSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-with-delicious-cocktails_23-2150244937.jpg", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-hall-with-turquoise-chairs-white-walls-french-windows-curtains_140725-8450.jpg?_wi=2", imageAlt: "happy diner portrait restaurant"},
|
||||
{
|
||||
id: "2", name: "Sophie Martin", date: "Nov 2023", title: "Exceptional Quality", quote: "From the first sip of wine to the final bite of chocolate, every detail was meticulously crafted.", tag: "Event Attendee", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-happy-people-with-food_23-2149152871.jpg", imageSrc: "http://img.b2bpic.net/free-photo/pitahaya-dragon-fruit-still-life-cinematic-dark-style_23-2151566201.jpg?_wi=2", imageAlt: "happy diner portrait restaurant"},
|
||||
{
|
||||
id: "3", name: "Marcus Vane", date: "Dec 2023", title: "Gourmet Highlight", quote: "Truly the best seasonal greens I have ever had. The freshness and depth of flavor were unparalleled.", tag: "Local Foodie", avatarSrc: "http://img.b2bpic.net/free-photo/internationals-people-standing-cafe-drinking-cocktails_1157-32440.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-view-female-cook-cleaning-tangerines-dark-surface_179666-44540.jpg", imageAlt: "happy diner portrait restaurant"},
|
||||
{
|
||||
id: "4", name: "Elena Rossi", date: "Jan 2024", title: "Refined Elegance", quote: "An atmosphere of sheer sophistication. Perfect for a quiet celebratory dinner in the city.", tag: "Regular Guest", avatarSrc: "http://img.b2bpic.net/free-photo/top-view-woman-having-lunch-with-salmon-with-brown-noodles-soup-berry-salad-cocktail_141793-2455.jpg", imageSrc: "http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727991.jpg", imageAlt: "happy diner portrait restaurant"},
|
||||
{
|
||||
id: "5", name: "David Wu", date: "Feb 2024", title: "Culinary Art", quote: "Each dish felt like an artistic expression. The ravioli was absolutely divine.", tag: "Gourmet Expert", avatarSrc: "http://img.b2bpic.net/free-photo/wine-glass_74190-1307.jpg", imageSrc: "http://img.b2bpic.net/free-photo/glass-cup-female-hands-background-sideboard-with-beautiful-vintage-dishes_169016-16094.jpg", imageAlt: "happy diner portrait restaurant"},
|
||||
{ id: "1", name: "Julian Thorne", date: "Oct 2023", title: "Critically Acclaimed", quote: "The Wagyu beef was perfection, redefined by balance and texture.", tag: "Dining Review", avatarSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-with-delicious-cocktails_23-2150244937.jpg" },
|
||||
{ id: "2", name: "Sophie Martin", date: "Nov 2023", title: "Exceptional Quality", quote: "Every detail was meticulously crafted.", tag: "Event Attendee", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-happy-people-with-food_23-2149152871.jpg" },
|
||||
]}
|
||||
title="Guest Reflections"
|
||||
description="Our guests' experiences define the spirit of Elysium Dining."
|
||||
@@ -154,11 +121,9 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Food Choice 2024", "Michelin Distinction", "Local Culinary Guild", "Luxury Travel Guide", "Organic Sourcing Award"]}
|
||||
names={["Food Choice 2024", "Michelin Distinction", "Local Culinary Guild"]}
|
||||
title="Our Accolades"
|
||||
description="Proudly recognized by industry leaders for culinary and service excellence."
|
||||
showCard={true}
|
||||
description="Proudly recognized by industry leaders for excellence."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -167,42 +132,36 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How far in advance should I book?", content: "We recommend booking at least 2 weeks ahead for weekends, though last-minute table openings may arise."},
|
||||
{
|
||||
id: "2", title: "Do you offer dietary accommodations?", content: "Absolutely. Please let us know of any allergies or preferences during booking so we can tailor your experience."},
|
||||
{
|
||||
id: "3", title: "What is the dress code?", content: "Smart elegant attire is appreciated. We invite you to dress comfortably while enjoying the refined atmosphere."},
|
||||
{ id: "1", title: "How far in advance should I book?", content: "We recommend booking at least 2 weeks ahead." },
|
||||
{ id: "2", title: "Do you offer dietary accommodations?", content: "Yes, please inform us of allergies during booking." },
|
||||
]}
|
||||
title="Dining Insights"
|
||||
description="Information on reservations, menu, and our hospitality philosophy."
|
||||
description="Find answers to frequently asked questions regarding our service and reservations."
|
||||
faqsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/decorated-wedding-reception-venue-with-view-sea-through-windows_637285-1001.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
tag="Reservations"
|
||||
title="Secure Your Table"
|
||||
description="Spaces fill up quickly—secure your table for an evening of culinary excellence today."
|
||||
tag="Booking Inquiries"
|
||||
title="Reserve Your Experience"
|
||||
description="Our studio team is ready to assist with your private booking or inquiry. Please fill in your details below and we will contact you shortly to confirm availability."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/doors-building-door-european-style_1417-1307.jpg"
|
||||
mediaAnimation="opacity"
|
||||
buttonText="Inquire Now"
|
||||
buttonText="Submit Inquiry"
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Elysium Dining"
|
||||
leftLink={{
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Contact Us", href: "#contact"}}
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Studio", items: [{ label: "123 Gourmet Lane" }, { label: "Culinary City, ST 56789" }] },
|
||||
{ title: "Hours", items: [{ label: "Tue-Thu: 5pm-10pm" }, { label: "Fri-Sat: 5pm-11pm" }] },
|
||||
{ title: "Socials", items: [{ label: "Instagram" }, { label: "Facebook" }, { label: "Twitter" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Elysium Dining"
|
||||
bottomRightText="All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user