Update src/app/page.tsx

This commit is contained in:
2026-04-15 11:19:42 +00:00
parent 14c6087569
commit 60aabbe6f5

View File

@@ -7,13 +7,14 @@ import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleC
import FeatureBento from "@/components/sections/feature/FeatureBento";
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
import TeamCardFive from "@/components/sections/team/TeamCardFive";
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import { Sparkles, Utensils, Award, Users, TrendingUp, Shield, Clock, Smile, CheckCircle, XCircle } from "lucide-react";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import { Sparkles, Utensils, Award, Users, TrendingUp, Shield, Clock, Smile, CheckCircle, XCircle, Star, Calendar } from "lucide-react";
export default function BuffetPage() {
return (
@@ -90,29 +91,35 @@ export default function BuffetPage() {
}
]}
/>
<MetricCardOne
<PricingCardFive
title="Transparent Value"
description="Simple, family-friendly pricing with something for everyone."
textboxLayout="default"
useInvertedBackground={false}
gridVariant="uniform-all-items-equal"
description="Choose the perfect dining time for you and your family."
textboxLayout="split-actions"
animationType="slide-up"
metrics={[
{ id: "lunch", value: "$15.99", title: "Lunch", description: "Available daily until 4:00 PM", icon: Clock },
{ id: "dinner", value: "$19.99", title: "Dinner", description: "Full evening buffet experience", icon: Utensils },
{ id: "kids", value: "Age-Based", title: "Kids Pricing", description: "Special rates for younger guests", icon: Users },
plans={[
{
id: "lunch", tag: "Most Popular", tagIcon: Star,
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"]
}
]}
/>
<TestimonialCardFifteen
testimonial="The variety here is unmatched! From the fresh sashimi to the hot crab legs, everything was constantly replenished and tasted incredible. Truly the best value in the city."
rating={5}
author="— Sarah Jenkins, Local Foodie"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg", alt: "Guest" },
<TestimonialCardTwelve
cardTitle="Join 10,000+ Happy Guests"
cardTag="Testimonials"
cardTagIcon={Star}
cardAnimation="slide-up"
useInvertedBackground={true}
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: "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" }
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
useInvertedBackground={false}
/>
<FeatureCardSixteen
title="Our Commitment to Excellence"
@@ -137,12 +144,12 @@ export default function BuffetPage() {
]}
/>
<ContactCTA
tag="Book Your Table"
tag="Hurry, Seats Filling Fast"
title="Join Us Tonight"
description="Weekend dining fills fast — reserve 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" }}
buttons={[
{ text: "Book Now", href: "#contact" }
{ text: "Reserve Now", href: "#contact" }
]}
buttonAnimation="slide-up"
useInvertedBackground={false}