diff --git a/src/app/page.tsx b/src/app/page.tsx index 534b1f5..a83d7da 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,14 +7,12 @@ 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 MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; -import TeamCardFive from "@/components/sections/team/TeamCardFive"; +import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; import FaqBase from "@/components/sections/faq/FaqBase"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBase from "@/components/sections/footer/FooterBase"; -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, Star, Smile } from "lucide-react"; export default function BuffetPage() { return ( @@ -36,8 +34,9 @@ export default function BuffetPage() { navItems={[ { name: "Menu", id: "menu" }, { name: "Pricing", id: "pricing" }, - { name: "Experience", id: "about" }, - { name: "Reserve", id: "contact" }, + { name: "Our Story", id: "/our-story" }, + { name: "Careers", id: "/careers" }, + { name: "Contact Us", id: "/contact-us" }, ]} button={{ text: "Book Now", href: "#contact" }} /> @@ -160,8 +159,8 @@ export default function BuffetPage() { copyrightText="© 2026 | Epicure Buffet" 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: "#" }] }, + { title: "Company", items: [{ label: "Our Story", href: "/our-story" }, { label: "Careers", href: "/careers" }] }, + { title: "Support", items: [{ label: "Reservations", href: "#contact" }, { label: "Contact Us", href: "/contact-us" }] }, ]} />