Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-04 19:11:44 +00:00

View File

@@ -30,7 +30,7 @@ export default function LandingPage() {
<NavbarStyleCentered
brandName="Structure Hair Studio"
navItems={[
{ name: "Home", id: "home" },
{ name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
@@ -92,7 +92,7 @@ export default function LandingPage() {
title: "Personalized Service", description: "Every client is unique. We tailor our services to match your individual style and preferences.", icon: Heart,
},
]}
buttons={[{ text: "Learn More", href: "#services" }]}
buttons={[{ text: "Learn More", href: "services" }]}
textboxLayout="default"
useInvertedBackground={true}
mediaAnimation="slide-up"
@@ -243,18 +243,18 @@ export default function LandingPage() {
columns={[
{
title: "Services", items: [
{ label: "Haircuts", href: "#services" },
{ label: "Shaves", href: "#services" },
{ label: "Grooming", href: "#services" },
{ label: "Pricing", href: "#pricing" },
{ label: "Haircuts", href: "services" },
{ label: "Shaves", href: "services" },
{ label: "Grooming", href: "services" },
{ label: "Pricing", href: "pricing" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Team", href: "#team" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Contact", href: "#contact" },
{ label: "About Us", href: "about" },
{ label: "Our Team", href: "team" },
{ label: "Testimonials", href: "testimonials" },
{ label: "Contact", href: "contact" },
],
},
{