Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 71a781c5b7 | |||
| a465122c02 | |||
| 5af3aefe1a | |||
| ea02f93afc | |||
| cf771605f2 | |||
| 87a5c2d409 | |||
| 39009d2353 | |||
| 0a62e81ab0 |
@@ -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 ContactForm from '@/components/form/ContactForm';
|
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,23 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactForm
|
<ContactSplitForm
|
||||||
tag="Bookings"
|
|
||||||
title="Book Your Appointment"
|
title="Book Your Appointment"
|
||||||
description="Please fill out the form below to request your slot."
|
description="Experience the finest grooming services in the city. Select your preferences and lock in your session today."
|
||||||
tagIcon={Calendar}
|
inputs={[
|
||||||
inputPlaceholder="Enter your name or email"
|
{ name: "fullName", type: "text", placeholder: "Full Name", required: true },
|
||||||
buttonText="Request Appointment"
|
{ name: "email", type: "email", placeholder: "Email", required: true },
|
||||||
centered={true}
|
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
|
||||||
|
{ name: "service", type: "text", placeholder: "Preferred Service (Cut, Shave, etc.)" },
|
||||||
|
{ name: "notes", type: "text", placeholder: "Additional Notes" }
|
||||||
|
]}
|
||||||
|
multiSelect={{ name: "barber", label: "Select Barber", options: ["Barber 1", "Barber 2", "Barber 3", "Barber 4", "Barber 5", "Barber 6"] }}
|
||||||
|
textarea={{ name: "message", placeholder: "Any special requests?", rows: 4 }}
|
||||||
|
buttonText="Request My Appointment"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
containerClassName="min-h-screen py-24"
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/barber-holding-razor-hair-client_23-2148353483.jpg"
|
||||||
|
imageAlt="Barber serving client"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user