3 Commits

Author SHA1 Message Date
6b8814525c Update src/app/page.tsx 2026-03-12 16:54:26 +00:00
be835bc0b9 Update src/app/page.tsx 2026-03-12 16:54:01 +00:00
a16e40cda6 Merge version_1 into main
Merge version_1 into main
2026-03-12 16:50:52 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel";
import SplitAbout from "@/components/sections/about/SplitAbout";
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
import TeamCardEleven from "@/components/sections/team/TeamCardEleven";
@@ -37,24 +37,35 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitDualMedia
<HeroBillboardRotatedCarousel
title="Precision Grooming, Timeless Style"
description="Experience premium barber services in Bologna's most elegant salon. At Rafik Barber Shop, we combine traditional craftsmanship with modern techniques to deliver the perfect cut every time."
tag="Professional Barber Shop"
tagIcon={Sparkles}
tagAnimation="slide-up"
background={{ variant: "plain" }}
mediaItems={[
carouselItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/hairstylist-looking-client-mirror_23-2148242870.jpg", imageAlt: "professional barber haircut precision"
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/hairstylist-looking-client-mirror_23-2148242870.jpg", imageAlt: "professional barber haircut precision"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7316.jpg", imageAlt: "elegant barber shop interior design"
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7316.jpg", imageAlt: "elegant barber shop interior design"
},
{
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/serious-elegant-bearded-male-wearing-classic-waistcoat-slim-bow-tie_613910-1520.jpg?_wi=1", imageAlt: "professional classic haircut style"
},
{
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/barber-shaves-bearded-man-vintage-atmosphere_1153-8485.jpg?_wi=1", imageAlt: "professional beard grooming trimming"
},
{
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/woman-using-hairdryer-her-beauty-routine_23-2150166441.jpg?_wi=1", imageAlt: "modern hair styling techniques"
},
{
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-lying-salon-while-barber-trimming-his-beard_651396-2964.jpg?_wi=1", imageAlt: "traditional straight razor shaving"
}
]}
mediaAnimation="slide-up"
rating={5}
ratingText="Trusted by discerning clients"
autoPlay={true}
autoPlayInterval={4000}
buttons={[
{ text: "Book Appointment", href: "tel:+393202164729" },
{ text: "Learn More", href: "#about" }
@@ -108,25 +119,25 @@ export default function LandingPage() {
id: "1", title: "Classic Haircut", descriptions: [
"Precision cutting techniques", "Professional styling", "Expert fade work", "Personalized consultation"
],
imageSrc: "http://img.b2bpic.net/free-photo/serious-elegant-bearded-male-wearing-classic-waistcoat-slim-bow-tie_613910-1520.jpg", imageAlt: "professional classic haircut style"
imageSrc: "http://img.b2bpic.net/free-photo/serious-elegant-bearded-male-wearing-classic-waistcoat-slim-bow-tie_613910-1520.jpg?_wi=2", imageAlt: "professional classic haircut style"
},
{
id: "2", title: "Beard Grooming", descriptions: [
"Expert beard trimming", "Shape and definition", "Beard treatment oils", "Professional styling"
],
imageSrc: "http://img.b2bpic.net/free-photo/barber-shaves-bearded-man-vintage-atmosphere_1153-8485.jpg", imageAlt: "professional beard grooming trimming"
imageSrc: "http://img.b2bpic.net/free-photo/barber-shaves-bearded-man-vintage-atmosphere_1153-8485.jpg?_wi=2", imageAlt: "professional beard grooming trimming"
},
{
id: "3", title: "Styling & Design", descriptions: [
"Modern styling techniques", "Creative designs", "Color treatments", "Trend consultation"
],
imageSrc: "http://img.b2bpic.net/free-photo/woman-using-hairdryer-her-beauty-routine_23-2150166441.jpg", imageAlt: "modern hair styling techniques"
imageSrc: "http://img.b2bpic.net/free-photo/woman-using-hairdryer-her-beauty-routine_23-2150166441.jpg?_wi=2", imageAlt: "modern hair styling techniques"
},
{
id: "4", title: "Shaving Service", descriptions: [
"Traditional straight razor shave", "Hot towel treatment", "Skin care focus", "Relaxing experience"
],
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-lying-salon-while-barber-trimming-his-beard_651396-2964.jpg", imageAlt: "traditional straight razor shaving"
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-lying-salon-while-barber-trimming-his-beard_651396-2964.jpg?_wi=2", imageAlt: "traditional straight razor shaving"
}
]}
gridVariant="four-items-2x2-equal-grid"
@@ -192,4 +203,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}