Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 87a5c2d409 | |||
| 39009d2353 | |||
| 93e6de20dd | |||
| 0a62e81ab0 | |||
| e9cca38814 | |||
| 35d29a0057 |
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user