Merge version_6 into main #6

Merged
bender merged 1 commits from version_6 into main 2026-04-27 23:47:47 +00:00

View File

@@ -2,6 +2,7 @@
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';
@@ -9,9 +10,8 @@ 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 ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Scissors, Calendar, Star, Clock, User, Award } from 'lucide-react';
import { Scissors, Calendar, Award } from 'lucide-react';
export default function LandingPage() {
return (
@@ -38,11 +38,23 @@ 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" }}
inputPlaceholder="Your name or email"
buttonText="Reserve Now"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Precision Grooming & Style"
@@ -51,8 +63,8 @@ export default function LandingPage() {
tagIcon={Scissors}
background={{ variant: "plain" }}
buttons={[
{ text: "Book with Your Barber", href: "contact" },
{ text: "View Services", href: "cuts" }
{ text: "Book with Your Barber", href: "#contact" },
{ text: "View Services", href: "#cuts" }
]}
buttonAnimation="slide-up"
mediaItems={[
@@ -158,28 +170,16 @@ export default function LandingPage() {
/>
</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" }}
inputPlaceholder="Your name or email"
buttonText="Reserve Now"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Sharp Edge"
columns={[
{ title: "Visit", items: [{ label: "Location", href: "#" }, { label: "Directions", href: "#" }] },
{ title: "Services", items: [{ label: "Cuts", href: "#" }, { label: "Shaves", href: "#" }] },
{ title: "Business", items: [{ label: "Book Now", href: "#" }, { label: "Contact", href: "#" }] }
{ title: "Business", items: [{ label: "Book Now", href: "#contact" }, { label: "Contact", href: "#" }] }
]}
/>
</div>
</ThemeProvider>
);
}
}