Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2daa34b2f7 | |||
| 60025afbab | |||
| 87e6d0182f | |||
| 886e912344 | |||
| f977e55b42 | |||
| f09debbe24 | |||
| a3f52dbafe | |||
| 9ac389c115 | |||
| 8931ceae4f | |||
| 70c31300bc | |||
| 012b3f10e4 | |||
| 5170b267f4 | |||
| 76e15ece34 | |||
| 40a7a162d5 | |||
| 9014c7d385 | |||
| eb3a7ac5e9 | |||
| c4e7ace9c6 | |||
| f9c26298da |
106
src/app/page.tsx
106
src/app/page.tsx
@@ -1,22 +1,35 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis, { useLenis } from "lenis/react";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
|
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
|
||||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
|
||||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||||
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
|
||||||
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
|
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
|
||||||
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
|
||||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
||||||
import { Sparkles, Utensils, Award, Users, TrendingUp, Shield, Clock, Smile, CheckCircle, XCircle, Star, Calendar } from "lucide-react";
|
import { Sparkles, Utensils, Award, Smile, Star } from "lucide-react";
|
||||||
|
|
||||||
export default function BuffetPage() {
|
export default function BuffetPage() {
|
||||||
|
const lenis = useLenis();
|
||||||
|
|
||||||
|
const handleScroll = (id: string) => {
|
||||||
|
if (!id) return;
|
||||||
|
const targetId = id.replace(/^#+/, "");
|
||||||
|
const element = document.getElementById(targetId);
|
||||||
|
if (element && lenis) {
|
||||||
|
lenis.scrollTo(element);
|
||||||
|
} else {
|
||||||
|
const target = document.getElementById(targetId);
|
||||||
|
if (target) {
|
||||||
|
target.scrollIntoView({ behavior: "smooth" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="text-stagger"
|
||||||
@@ -26,7 +39,7 @@ export default function BuffetPage() {
|
|||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="none"
|
background="none"
|
||||||
cardStyle="glass-elevated"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="metallic"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
@@ -39,9 +52,12 @@ export default function BuffetPage() {
|
|||||||
{ name: "Experience", id: "about" },
|
{ name: "Experience", id: "about" },
|
||||||
{ name: "Reserve", id: "contact" },
|
{ name: "Reserve", id: "contact" },
|
||||||
]}
|
]}
|
||||||
button={{ text: "Book Now", href: "#contact" }}
|
button={{
|
||||||
|
text: "Book Now",
|
||||||
|
onClick: () => handleScroll("#contact")
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
<HeroSplitDoubleCarousel
|
<div id="home"><HeroSplitDoubleCarousel
|
||||||
title="A Global Feast, Fresh Daily"
|
title="A Global Feast, Fresh Daily"
|
||||||
description="Indulge in an endless variety of premium sushi, fresh-caught seafood, and chef-curated international cuisines. Always freshly refilled for your perfect dining experience."
|
description="Indulge in an endless variety of premium sushi, fresh-caught seafood, and chef-curated international cuisines. Always freshly refilled for your perfect dining experience."
|
||||||
tag="🔥 87 people dining right now"
|
tag="🔥 87 people dining right now"
|
||||||
@@ -49,8 +65,8 @@ export default function BuffetPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "canvas-reveal" }}
|
background={{ variant: "canvas-reveal" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Reserve Your Table", href: "#contact" },
|
{ text: "Reserve Your Table", onClick: () => handleScroll("#contact") },
|
||||||
{ text: "View Menu", href: "#menu" },
|
{ text: "View Menu", onClick: () => handleScroll("#menu") },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
carouselPosition="right"
|
carouselPosition="right"
|
||||||
@@ -65,52 +81,31 @@ export default function BuffetPage() {
|
|||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/male-chef-kitchen-cooking_23-2148934672.jpg", imageAlt: "Chef at work" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/male-chef-kitchen-cooking_23-2148934672.jpg", imageAlt: "Chef at work" },
|
||||||
]}
|
]}
|
||||||
carouselItemClassName="!aspect-[4/5]"
|
carouselItemClassName="!aspect-[4/5]"
|
||||||
/>
|
/></div>
|
||||||
<FeatureBento
|
<div id="menu"><FeatureBento
|
||||||
title="The Epicure Experience"
|
title="The Epicure Experience"
|
||||||
description="We combine culinary variety with premium service to redefine the buffet concept."
|
description="We combine culinary variety with premium service to redefine the buffet concept."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{ bentoComponent: "reveal-icon", title: "Live Refill Stations", description: "Our chefs monitor every tray, ensuring hot food is served at the perfect temperature.", icon: Utensils },
|
||||||
title: "Live Refill Stations",
|
{ bentoComponent: "reveal-icon", title: "Always Fresh", description: "Sourcing premium seafood and seasonal produce daily for quality you can taste.", icon: Utensils },
|
||||||
description: "Our chefs monitor every tray, ensuring hot food is served at the perfect temperature.", bentoComponent: "reveal-icon", icon: Utensils
|
{ bentoComponent: "reveal-icon", title: "Improved Desserts", description: "Discover our expanded dessert bar with artisan pastries and seasonal fruits.", icon: Smile }
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Always Fresh",
|
|
||||||
description: "Sourcing premium seafood and seasonal produce daily for quality you can taste.", bentoComponent: "media-stack", items: [
|
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/vegetables-stall-market-sanarysurmer_268835-3890.jpg", imageAlt: "Fresh ingredients" },
|
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/beef-with-pistachio-topping-served-with-fruits-berries_7502-7390.jpg", imageAlt: "Plated dishes" },
|
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/culinary-expert-commercial-kitchen-prepares-dish-with-fresh-basil-parsley_482257-124314.jpg", imageAlt: "Chef station" }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Improved Desserts",
|
|
||||||
description: "Discover our expanded dessert bar with artisan pastries and seasonal fruits.", bentoComponent: "reveal-icon", icon: Smile
|
|
||||||
}
|
|
||||||
]}
|
]}
|
||||||
/>
|
/></div>
|
||||||
<PricingCardFive
|
<div id="pricing"><PricingCardFive
|
||||||
title="Transparent Value"
|
title="Transparent Value"
|
||||||
description="Choose the perfect dining time for you and your family."
|
description="Choose the perfect dining time for you and your family."
|
||||||
textboxLayout="split-actions"
|
textboxLayout="split-actions"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{ id: "lunch", period: "per person", featuresTitle: "Lunch Amenities", tag: "Most Popular", tagIcon: Star, price: "$15.99", description: "Full access to our lunch selection until 4:00 PM.", button: { text: "Reserve Lunch", onClick: () => handleScroll("#contact") }, features: ["All Lunch Stations", "Soft Drinks", "Fresh Sushi Bar"] },
|
||||||
id: "lunch", tag: "Most Popular", tagIcon: Star,
|
{ id: "dinner", period: "per person", featuresTitle: "Dinner Amenities", tag: "Premium Choice", tagIcon: Award, price: "$29.99", description: "Complete dinner experience with full seafood bar.", button: { text: "Reserve Dinner", onClick: () => handleScroll("#contact") }, features: ["All Lunch Features", "Premium Crab Legs", "Chef Specials"] }
|
||||||
price: "$15.99", period: "per person", description: "Full access to our lunch selection until 4:00 PM.", button: { text: "Reserve Lunch", href: "#contact" },
|
|
||||||
featuresTitle: "Includes:", features: ["All Lunch Stations", "Soft Drinks", "Fresh Sushi Bar"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "dinner", tag: "Premium Choice", tagIcon: Award,
|
|
||||||
price: "$29.99", period: "per person", description: "Complete dinner experience with full seafood bar.", button: { text: "Reserve Dinner", href: "#contact" },
|
|
||||||
featuresTitle: "Includes:", features: ["All Lunch Features", "Premium Crab Legs", "Chef Specials"]
|
|
||||||
}
|
|
||||||
]}
|
]}
|
||||||
/>
|
/></div>
|
||||||
<TestimonialCardTwelve
|
<div id="about"><TestimonialCardTwelve
|
||||||
cardTitle="Join 10,000+ Happy Guests"
|
cardTitle="Join 10,000+ Happy Guests"
|
||||||
cardTag="Testimonials"
|
cardTag="Testimonials"
|
||||||
cardTagIcon={Star}
|
cardTagIcon={Star}
|
||||||
@@ -118,18 +113,17 @@ export default function BuffetPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{ id: "1", name: "Sarah Jenkins", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg" },
|
{ id: "1", name: "Sarah Jenkins", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg" },
|
||||||
{ id: "2", name: "Mark Thompson", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-man_23-2148213458.jpg" },
|
{ id: "2", name: "Mark Thompson", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-man_23-2148213458.jpg" }
|
||||||
{ id: "3", name: "Elena Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-looking-away_23-2148213451.jpg" }
|
|
||||||
]}
|
]}
|
||||||
/>
|
/></div>
|
||||||
<FeatureCardSixteen
|
<FeatureCardSixteen
|
||||||
title="Our Commitment to Excellence"
|
title="Our Commitment to Excellence"
|
||||||
description="We prioritize your satisfaction above all else."
|
description="We prioritize your satisfaction above all else."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
negativeCard={{ items: ["Cold dishes in the past", "Long queues", "Service delays", "Limited dessert variety"] }}
|
negativeCard={{ items: ["Cold dishes in the past", "Long queues"] }}
|
||||||
positiveCard={{ items: ["Steaming hot food always", "Live kitchen support", "Attentive hospitality", "Upgraded dessert collection"] }}
|
positiveCard={{ items: ["Steaming hot food always", "Live kitchen support"] }}
|
||||||
/>
|
/>
|
||||||
<FaqBase
|
<FaqBase
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
@@ -138,31 +132,23 @@ export default function BuffetPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
faqs={[
|
faqs={[
|
||||||
{ id: "1", title: "Do you offer senior discounts?", content: "Yes, we offer special rates for seniors available during our lunch hours upon request." },
|
{ id: "1", title: "Do you offer senior discounts?", content: "Yes, we offer special rates for seniors available during our lunch hours upon request." }
|
||||||
{ id: "2", title: "How often is the food replaced?", content: "Our team operates a live kitchen system, meaning trays are monitored and replaced the moment they drop below capacity." },
|
|
||||||
{ id: "3", title: "Is the buffet kid-friendly?", content: "Absolutely! We have dedicated stations with family favorites that children love, alongside our premium seafood and sushi options." },
|
|
||||||
{ id: "4", title: "Do I need to reserve?", content: "While walk-ins are welcome, weekend dining fills up fast. We recommend booking in advance to ensure your table is waiting." }
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<ContactCTA
|
<div id="contact"><ContactCTA
|
||||||
tag="Hurry, Seats Filling Fast"
|
tag="Hurry, Seats Filling Fast"
|
||||||
title="Join Us Tonight"
|
title="Join Us Tonight"
|
||||||
description="Urgency Alert: Peak hours filling up. Book now to guarantee your spot for an exceptional evening."
|
description="Urgency Alert: Peak hours filling up. Book now to guarantee your spot for an exceptional evening."
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Reserve Now", href: "#contact" }
|
{ text: "Reserve Now", onClick: () => handleScroll("#contact") }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/></div>
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Epicure Buffet"
|
logoText="Epicure Buffet"
|
||||||
copyrightText="© 2026 | Epicure Buffet"
|
columns={[{ title: "Dining", items: [{ label: "Lunch Menu", href: "#" }] }]}
|
||||||
columns={[
|
|
||||||
{ title: "Dining", items: [{ label: "Lunch Menu", href: "#" }, { label: "Dinner Menu", href: "#" }] },
|
|
||||||
{ title: "Company", items: [{ label: "Our Story", href: "#" }, { label: "Careers", href: "#" }] },
|
|
||||||
{ title: "Support", items: [{ label: "Reservations", href: "#" }, { label: "Contact Us", href: "#" }] },
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user