Update src/app/page.tsx

This commit is contained in:
2026-03-11 18:46:13 +00:00
parent ea27d4c2c4
commit 093a023ed5

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
import MediaAbout from "@/components/sections/about/MediaAbout";
import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
import ContactSplit from "@/components/sections/contact/ContactSplit";
@@ -62,23 +62,40 @@ export default function LandingPage() {
</div>
<div id="services" data-section="services">
<FeatureCardSixteen
<FeatureCardTwentySeven
features={[
{
id: "1", title: "Regular Haircut", descriptions: [
"Professional haircut with expert styling", "Available with number 1 or 2 sides", "Perfect for classic looks"
],
imageSrc: "http://img.b2bpic.net/free-photo/barber-equipment-working-surface-by-mirror-barbershop_627829-8282.jpg?_wi=1", imageAlt: "Regular haircut service"
},
{
id: "2", title: "Beard Design", descriptions: [
"Custom beard shaping and design", "Razor fade enhancement", "Professional grooming expertise"
],
imageSrc: "http://img.b2bpic.net/free-photo/barber-equipment-working-surface-by-mirror-barbershop_627829-8282.jpg?_wi=2", imageAlt: "Beard design service"
},
{
id: "3", title: "The Works", descriptions: [
"Complete grooming package", "Haircut with beard and fade design", "Full eyebrow styling included"
],
imageSrc: "http://img.b2bpic.net/free-photo/barber-equipment-working-surface-by-mirror-barbershop_627829-8282.jpg?_wi=3", imageAlt: "Complete grooming package"
},
{
id: "4", title: "Eyebrow Styling", descriptions: [
"Professional eyebrow design", "Precision shaping and grooming", "Enhances your natural features"
],
imageSrc: "http://img.b2bpic.net/free-photo/barber-equipment-working-surface-by-mirror-barbershop_627829-8282.jpg?_wi=1", imageAlt: "Eyebrow styling service"
}
]}
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
title="Our Premium Services"
description="Expert grooming solutions tailored to your style and preferences"
tag="Services"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
negativeCard={{
items: [
"Standard haircuts only", "Limited beard options", "No design services"
]
}}
positiveCard={{
items: [
"Any haircut with professional styling", "Razor fade and enhancement services", "Eyebrow and beard design", "Haircut plus beard combo", "The Works complete grooming package"
]
}}
/>
</div>