Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 71a781c5b7 | |||
| a465122c02 | |||
| 5af3aefe1a | |||
| ea02f93afc | |||
| cf771605f2 | |||
| 87a5c2d409 | |||
| 39009d2353 | |||
| 93e6de20dd | |||
| 0a62e81ab0 | |||
| e9cca38814 | |||
| 35d29a0057 | |||
| 02ef23c9fa | |||
| 0a81b9a789 | |||
| 29c6173870 |
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
|
||||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
@@ -10,6 +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 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,24 +38,11 @@ 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>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<ContactCenter
|
|
||||||
tag="Bookings"
|
|
||||||
title="Book Your Appointment"
|
|
||||||
description="Use the calendar below to secure your spot with your preferred barber."
|
|
||||||
tagIcon={Calendar}
|
|
||||||
background={{ variant: "sparkles-gradient" }}
|
|
||||||
useInvertedBackground={false}
|
|
||||||
inputPlaceholder="Your name or email"
|
|
||||||
buttonText="Reserve Now"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardCarousel
|
<HeroBillboardCarousel
|
||||||
title="Precision Grooming & Style"
|
title="Precision Grooming & Style"
|
||||||
@@ -177,6 +164,27 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactSplitForm
|
||||||
|
title="Book Your Appointment"
|
||||||
|
description="Experience the finest grooming services in the city. Select your preferences and lock in your session today."
|
||||||
|
inputs={[
|
||||||
|
{ 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: "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}
|
||||||
|
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 id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Sharp Edge"
|
logoText="Sharp Edge"
|
||||||
|
|||||||
Reference in New Issue
Block a user