Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-04-28 17:48:41 +00:00

View File

@@ -3,10 +3,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
@@ -28,10 +26,6 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Services", id: "services"},
{
name: "About", id: "about"},
{
name: "Pricing", id: "pricing"},
]}
@@ -66,41 +60,6 @@ export default function LandingPage() {
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwentyNine
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
features={[
{
title: "Precision Haircut", description: "Expert cuts designed to define your style and enhance your features.", imageSrc: "http://img.b2bpic.net/free-photo/tools-from-barbershop-wooden-background_1303-10377.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/top-view-scissors-dispenser_23-2148108757.jpg", buttonText: "See More"},
{
title: "Expert Beard Trim", description: "Sculpted beard grooming with premium products for a clean, sharp look.", imageSrc: "http://img.b2bpic.net/free-photo/military-man-suffering-from-ptsd_23-2149307587.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/handsome-hipster-bearded-male-sitting-armchair-barber-shop-while-hairdresser-shaves-his-beard-with-dangerous-razor_613910-18507.jpg", buttonText: "See More"},
{
title: "Luxury Hot Towel Shave", description: "Experience the ultimate smooth shave with our traditional hot towel treatment.", imageSrc: "http://img.b2bpic.net/free-photo/barber-using-shaving-cream-contour-male-customer-s-beard_23-2148985737.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/professional-hairdresser-modeling-beard-barbershop-close-up-photo_613910-4293.jpg", buttonText: "See More"},
]}
title="Our Signature Services"
description="Premium grooming solutions tailored to your unique style."
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{
type: "text", content: "The Precision Difference"},
{
type: "image", src: "http://img.b2bpic.net/free-photo/adorable-pet-enjoying-spa-day-illustration_23-2151841549.jpg", alt: "barbershop interior warm lighting"},
]}
buttons={[
{
text: "Learn More"},
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardNine
animationType="slide-up"
@@ -149,14 +108,6 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Services", href: "#services"},
{
label: "About", href: "#about"},
],
},
{
items: [
{
@@ -180,4 +131,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}