From f1360b86604c811959f3f3716c41a6466972d3d1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 14:37:29 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 131 ++++++++++++++++++++++++++++++++++++----------- 1 file changed, 101 insertions(+), 30 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0f902e0..78cdbf2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,10 +5,11 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import HeroSplit from '@/components/sections/hero/HeroSplit'; import AboutMetric from '@/components/sections/about/AboutMetric'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; -import ContactText from '@/components/sections/contact/ContactText'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Apple, ChefHat, Users, Zap, Sparkles } from "lucide-react"; +import { Apple, ChefHat, Users, Zap, Sparkles, Star, Gift, Utensils, CalendarDays, Mail } from "lucide-react"; export default function LandingPage() { return ( @@ -31,9 +32,13 @@ export default function LandingPage() { { name: "Home", id: "#hero" }, { name: "Experience", id: "#experience" }, { name: "Menu", id: "#menu" }, + { name: "Testimonials", id: "#testimonials" }, { name: "Gallery", id: "#gallery" }, { name: "Events", id: "#events" }, - { name: "Contact", id: "#contact" } + { name: "Loyalty", id: "#loyalty" }, + { name: "Gift Cards", id: "#gift-cards" }, + { name: "Contact", id: "#contact" }, + { name: "Newsletter", id: "#newsletter" } ]} button={{ text: "Reserve a Table", href: "#contact" }} topBarButton={{ text: "Call Now", href: "tel:0749658589" }} @@ -88,25 +93,25 @@ export default function LandingPage() { />
-
- +
+
+ +
+
+
-
- + +
+
+ +
+
+
@@ -149,8 +220,8 @@ export default function LandingPage() { logoText="Dolce Vita" columns={[ { title: "Menu", items: [{ label: "Appetizers", href: "#menu" }, { label: "Main Courses", href: "#menu" }, { label: "Desserts", href: "#menu" }, { label: "Drinks", href: "#menu" }] }, - { title: "About Us", items: [{ label: "Our Story", href: "#experience" }, { label: "Our Team", href: "#" }, { label: "Events", href: "#events" }, { label: "Careers", href: "#" }] }, - { title: "Connect", items: [{ label: "Instagram", href: "https://instagram.com/dolcevita" }, { label: "Facebook", href: "https://facebook.com/dolcevita" }, { label: "Contact Us", href: "#contact" }] } + { title: "About Us", items: [{ label: "Our Story", href: "#experience" }, { label: "Events", href: "#events" }, { label: "Loyalty Program", href: "#loyalty" }, { label: "Gift Cards", href: "#gift-cards" }] }, + { title: "Connect", items: [{ label: "Instagram", href: "https://instagram.com/dolcevita" }, { label: "Facebook", href: "https://facebook.com/dolcevita" }, { label: "Contact Us", href: "#contact" }, { label: "Newsletter", href: "#newsletter" }] } ]} copyrightText="© 2024 Dolce Vita. All rights reserved." /> -- 2.49.1