From 2709cb2aed6035cdfa4fd6dac6f2f0fb76181a3c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:05:32 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 41 ++++++++++++++++++++++++++--------------- 1 file changed, 26 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c9618da..90b8d45 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; +import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; import ProductCardFour from "@/components/sections/product/ProductCardFour"; import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; @@ -29,8 +29,8 @@ export default function HomePage() {
-
@@ -186,7 +197,7 @@ export default function HomePage() { title="Reserve Your Perfect Moment" description="Book a table at our cafe and immerse yourself in an unforgettable aesthetic experience with world-class coffee and ambiance." buttons={[ - { text: "Make a Reservation", href: "/contact" }, + { text: "Make a Reservation", href: "#contact" }, { text: "View Locations", href: "/locations" }, ]} buttonAnimation="slide-up" @@ -202,16 +213,16 @@ export default function HomePage() { { title: "Explore", items: [ { label: "Home", href: "/" }, - { label: "Menu", href: "/menu" }, - { label: "Gallery", href: "/gallery" }, - { label: "About", href: "/about" }, + { label: "Menu", href: "#menu" }, + { label: "Gallery", href: "#gallery" }, + { label: "About", href: "#about" }, ], }, { title: "Connect", items: [ { label: "Locations", href: "/locations" }, { label: "Events", href: "/events" }, - { label: "Contact", href: "/contact" }, + { label: "Contact", href: "#cta-section" }, { label: "Blog", href: "/blog" }, ], }, @@ -236,4 +247,4 @@ export default function HomePage() { ); -} \ No newline at end of file +}