diff --git a/src/app/page.tsx b/src/app/page.tsx index a0afb95..4348f1c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,8 +13,8 @@ import { Star, Users, ShieldCheck, CalendarCheck } from "lucide-react"; export default function HomePage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Services", id: "services" } + { name: "Home", id: "/" }, + { name: "Services", id: "/services" } ]; const footerColumns = [ @@ -28,16 +28,16 @@ export default function HomePage() { }, { title: "Company", items: [ - { label: "About Us", href: "/" }, - { label: "Our Team", href: "/" }, - { label: "Reviews", href: "/" } + { label: "About Us", href: "/#about-trust" }, + { label: "Our Team", href: "/#team" }, + { label: "Reviews", href: "/#testimonials" } ] }, { title: "Support", items: [ - { label: "Contact Us", href: "/" }, - { label: "FAQ", href: "/" }, - { label: "Book Now", href: "/" } + { label: "Contact Us", href: "/#contact" }, + { label: "FAQ", href: "/#contact" }, + { label: "Book Now", href: "/#contact" } ] } ]; @@ -71,7 +71,7 @@ export default function HomePage() { background={{ variant: "radial-gradient" }} buttons={[ { text: "Call Now", href: "tel:+15551234567" }, - { text: "Book Appointment", href: "/contact" } + { text: "Book Appointment", href: "#contact" } ]} imageSrc="http://img.b2bpic.net/free-photo/professional-hairstylist-setting-hair-client_23-2147769851.jpg" imageAlt="Woman getting hair styled in an elegant beauty salon" @@ -147,7 +147,7 @@ export default function HomePage() { ]} ctaTitle="Ready for Your Transformation?" ctaDescription="Connect with us to schedule your next appointment or consultation. We can't wait to help you look and feel your best." - ctaButton={{ text: "Book Now", href: "/" }} + ctaButton={{ text: "Book Now", href: "#contact" }} ctaIcon={CalendarCheck} useInvertedBackground={false} animationType="slide-up" diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index ebb22d0..680c421 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -11,8 +11,8 @@ import { Scissors, Paintbrush, Heart, Sparkles, CalendarCheck } from "lucide-rea export default function ServicesPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Services", id: "services" } + { name: "Home", id: "/" }, + { name: "Services", id: "/services" } ]; const footerColumns = [ @@ -26,16 +26,16 @@ export default function ServicesPage() { }, { title: "Company", items: [ - { label: "About Us", href: "/" }, - { label: "Our Team", href: "/" }, - { label: "Reviews", href: "/" } + { label: "About Us", href: "/#about-trust" }, + { label: "Our Team", href: "/#team" }, + { label: "Reviews", href: "/#testimonials" } ] }, { title: "Support", items: [ - { label: "Contact Us", href: "/" }, - { label: "FAQ", href: "/" }, - { label: "Book Now", href: "/" } + { label: "Contact Us", href: "/#contact" }, + { label: "FAQ", href: "/#contact" }, + { label: "Book Now", href: "/#contact" } ] } ]; @@ -107,7 +107,7 @@ export default function ServicesPage() { ]} ctaTitle="Ready for Your Transformation?" ctaDescription="Connect with us to schedule your next appointment or consultation. We can't wait to help you look and feel your best." - ctaButton={{ text: "Book Now", href: "/services" }} + ctaButton={{ text: "Book Now", href: "#contact" }} ctaIcon={CalendarCheck} useInvertedBackground={false} animationType="slide-up"