From 3df602bd81d1390d9e183469b75d615eac19794d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:43:32 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9cfd080..02af7ca 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -68,7 +68,7 @@ export default function LandingPage() { ]} useInvertedBackground={false} buttons={[ - { text: "Learn More", href: "#services" } + { text: "Learn More", href: "services" } ]} /> @@ -209,26 +209,26 @@ export default function LandingPage() { columns={[ { title: "Services", items: [ - { label: "Private Dinners", href: "#services" }, - { label: "Corporate Catering", href: "#services" }, - { label: "Event Catering", href: "#services" }, - { label: "Meal Planning", href: "#services" } + { label: "Private Dinners", href: "services" }, + { label: "Corporate Catering", href: "services" }, + { label: "Event Catering", href: "services" }, + { label: "Meal Planning", href: "services" } ] }, { title: "Company", items: [ - { label: "About Us", href: "#about" }, - { label: "Specialties", href: "#specialties" }, - { label: "Testimonials", href: "#testimonials" }, - { label: "Contact", href: "#contact" } + { label: "About Us", href: "about" }, + { label: "Specialties", href: "specialties" }, + { label: "Testimonials", href: "testimonials" }, + { label: "Contact", href: "contact" } ] }, { title: "Support", items: [ - { label: "FAQ", href: "#faq" }, + { label: "FAQ", href: "faq" }, { label: "Dietary Options", href: "#" }, { label: "Booking Policies", href: "#" }, - { label: "Contact Us", href: "#contact" } + { label: "Contact Us", href: "contact" } ] }, { -- 2.49.1