Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 87a5c2d409 | |||
| 39009d2353 | |||
| 93e6de20dd | |||
| 0a62e81ab0 | |||
| e9cca38814 | |||
| 35d29a0057 | |||
| 02ef23c9fa | |||
| 0a81b9a789 | |||
| 29c6173870 |
@@ -2,7 +2,6 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
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 TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Scissors, Calendar, Award } from 'lucide-react';
|
||||
|
||||
@@ -38,24 +38,11 @@ export default function LandingPage() {
|
||||
{ name: "FAQ", id: "faq" }
|
||||
]}
|
||||
button={{
|
||||
text: "Book Now", href: "#contact"
|
||||
text: "Book Now", href: "#contact"
|
||||
}}
|
||||
/>
|
||||
</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">
|
||||
<HeroBillboardCarousel
|
||||
title="Precision Grooming & Style"
|
||||
@@ -177,6 +164,23 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Book Your Appointment"
|
||||
description="Fill in your details below and we'll get back to you."
|
||||
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: "business", type: "text", placeholder: "Business Name" },
|
||||
{ name: "field", type: "text", placeholder: "Field" },
|
||||
{ name: "instagram", type: "text", placeholder: "Instagram Handle" }
|
||||
]}
|
||||
buttonText="Submit Request"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
logoText="Sharp Edge"
|
||||
|
||||
Reference in New Issue
Block a user