6 Commits

Author SHA1 Message Date
87a5c2d409 Update src/app/page.tsx 2026-04-27 23:55:44 +00:00
39009d2353 Merge version_8 into main
Merge version_8 into main
2026-04-27 23:53:29 +00:00
93e6de20dd Update src/app/page.tsx 2026-04-27 23:53:26 +00:00
0a62e81ab0 Merge version_8 into main
Merge version_8 into main
2026-04-27 23:52:59 +00:00
e9cca38814 Update src/app/page.tsx 2026-04-27 23:52:53 +00:00
35d29a0057 Merge version_7 into main
Merge version_7 into main
2026-04-27 23:51:07 +00:00

View File

@@ -9,7 +9,7 @@ import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNinete
import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
import { Scissors, Calendar, Award } from 'lucide-react'; import { Scissors, Calendar, Award } from 'lucide-react';
@@ -38,7 +38,7 @@ export default function LandingPage() {
{ name: "FAQ", id: "faq" } { name: "FAQ", id: "faq" }
]} ]}
button={{ button={{
text: "Book Now", href: "#contact" text: "Book Now", href: "#contact"
}} }}
/> />
</div> </div>
@@ -165,15 +165,19 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactSplitForm
tag="Bookings"
title="Book Your Appointment" title="Book Your Appointment"
description="Use the calendar below to secure your spot with your preferred barber." description="Fill in your details below and we'll get back to you."
tagIcon={Calendar} inputs={[
background={{ variant: "sparkles-gradient" }} { name: "fullName", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email", required: true },
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
{ name: "business", type: "text", placeholder: "Business Name" },
{ name: "field", type: "text", placeholder: "Field" },
{ name: "instagram", type: "text", placeholder: "Instagram Handle" }
]}
buttonText="Submit Request"
useInvertedBackground={false} useInvertedBackground={false}
inputPlaceholder="Your name or email"
buttonText="Reserve Now"
/> />
</div> </div>