6 Commits

Author SHA1 Message Date
cb9b618c69 Update src/app/page.tsx 2026-03-27 19:22:31 +00:00
110cd5c894 Merge version_7 into main
Merge version_7 into main
2026-03-27 19:21:08 +00:00
73c1b0b712 Update src/app/page.tsx 2026-03-27 19:21:02 +00:00
6187c79a37 Merge version_6 into main
Merge version_6 into main
2026-03-27 19:20:27 +00:00
03e4134601 Update src/app/page.tsx 2026-03-27 19:20:24 +00:00
764572ccba Merge version_5 into main
Merge version_5 into main
2026-03-27 19:19:40 +00:00

View File

@@ -69,12 +69,12 @@ export default function LandingPage() {
useInvertedBackground={false}
plans={[
{
id: "p1", badge: "Most Popular", price: "$45", subtitle: "The Signature Cut", buttons: [{ text: "Book", href: "#contact" }],
features: ["Precision Haircut", "Line-up", "Hot Towel Service"],
id: "p1", badge: "Signature", price: "$45", subtitle: "Full service hair cut with design, black mask, and eyebrows", buttons: [{ text: "Book", href: "#contact" }],
features: ["Precision Haircut", "Custom Design", "Black Mask Treatment", "Eyebrow Grooming"],
},
{
id: "p2", badge: "Design", price: "$35", subtitle: "Haircut with Design", buttons: [{ text: "Book", href: "#contact" }],
features: ["Precision Haircut", "Custom Hair Design", "Line-up"],
id: "p2", badge: "Classic", price: "$35", subtitle: "Haircut with Eyebrows", buttons: [{ text: "Book", href: "#contact" }],
features: ["Precision Haircut", "Eyebrow Grooming", "Line-up"],
},
{
id: "p3", badge: "Complete", price: "$65", subtitle: "Full Grooming", buttons: [{ text: "Book", href: "#contact" }],
@@ -107,7 +107,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Schedule Your Visit"
title="Schedule Your Visit (512-504-6134)"
description="Ready to get fresh? Reach out and let's get you on the schedule."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
@@ -132,4 +132,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}