6 Commits

Author SHA1 Message Date
7c9c240172 Update src/app/services/page.tsx 2026-03-25 02:45:36 +00:00
15cf67b446 Update src/app/page.tsx 2026-03-25 02:45:36 +00:00
af27255e9e Merge version_1 into main
Merge version_1 into main
2026-03-25 02:40:28 +00:00
6ccefbe71d Merge version_1 into main
Merge version_1 into main
2026-03-25 02:39:42 +00:00
418a4ee48f Merge version_1 into main
Merge version_1 into main
2026-03-25 02:39:10 +00:00
4ce1f9ed2f Merge version_1 into main
Merge version_1 into main
2026-03-25 02:38:34 +00:00
2 changed files with 19 additions and 19 deletions

View File

@@ -13,8 +13,8 @@ import { Star, Users, ShieldCheck, CalendarCheck } from "lucide-react";
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
{ name: "Home", id: "home" }, { name: "Home", id: "/" },
{ name: "Services", id: "services" } { name: "Services", id: "/services" }
]; ];
const footerColumns = [ const footerColumns = [
@@ -28,16 +28,16 @@ export default function HomePage() {
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "/" }, { label: "About Us", href: "/#about-trust" },
{ label: "Our Team", href: "/" }, { label: "Our Team", href: "/#team" },
{ label: "Reviews", href: "/" } { label: "Reviews", href: "/#testimonials" }
] ]
}, },
{ {
title: "Support", items: [ title: "Support", items: [
{ label: "Contact Us", href: "/" }, { label: "Contact Us", href: "/#contact" },
{ label: "FAQ", href: "/" }, { label: "FAQ", href: "/#contact" },
{ label: "Book Now", href: "/" } { label: "Book Now", href: "/#contact" }
] ]
} }
]; ];
@@ -71,7 +71,7 @@ export default function HomePage() {
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
buttons={[ buttons={[
{ text: "Call Now", href: "tel:+15551234567" }, { 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" 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" imageAlt="Woman getting hair styled in an elegant beauty salon"
@@ -147,7 +147,7 @@ export default function HomePage() {
]} ]}
ctaTitle="Ready for Your Transformation?" 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." 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} ctaIcon={CalendarCheck}
useInvertedBackground={false} useInvertedBackground={false}
animationType="slide-up" animationType="slide-up"

View File

@@ -11,8 +11,8 @@ import { Scissors, Paintbrush, Heart, Sparkles, CalendarCheck } from "lucide-rea
export default function ServicesPage() { export default function ServicesPage() {
const navItems = [ const navItems = [
{ name: "Home", id: "home" }, { name: "Home", id: "/" },
{ name: "Services", id: "services" } { name: "Services", id: "/services" }
]; ];
const footerColumns = [ const footerColumns = [
@@ -26,16 +26,16 @@ export default function ServicesPage() {
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "/" }, { label: "About Us", href: "/#about-trust" },
{ label: "Our Team", href: "/" }, { label: "Our Team", href: "/#team" },
{ label: "Reviews", href: "/" } { label: "Reviews", href: "/#testimonials" }
] ]
}, },
{ {
title: "Support", items: [ title: "Support", items: [
{ label: "Contact Us", href: "/" }, { label: "Contact Us", href: "/#contact" },
{ label: "FAQ", href: "/" }, { label: "FAQ", href: "/#contact" },
{ label: "Book Now", href: "/" } { label: "Book Now", href: "/#contact" }
] ]
} }
]; ];
@@ -107,7 +107,7 @@ export default function ServicesPage() {
]} ]}
ctaTitle="Ready for Your Transformation?" 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." 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} ctaIcon={CalendarCheck}
useInvertedBackground={false} useInvertedBackground={false}
animationType="slide-up" animationType="slide-up"