Merge version_1 into main #2
447
src/app/page.tsx
447
src/app/page.tsx
@@ -1,335 +1,128 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TeamCardTen from '@/components/sections/team/TeamCardTen';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import { ShieldCheck } from "lucide-react";
|
||||
import TeamCardTen from '@/components/sections/team/TeamCardTen';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import { ShieldCheck } from 'lucide-react';
|
||||
|
||||
export default function Home() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Promise", id: "trust" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "Team", id: "team" }
|
||||
];
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="none"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "#gallery",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "#reviews",
|
||||
},
|
||||
{
|
||||
name: "Team",
|
||||
id: "#team",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#footer",
|
||||
},
|
||||
]}
|
||||
brandName="UNICUT"
|
||||
button={{
|
||||
text: "Book Now",
|
||||
href: "#services",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Your Style. Perfected."
|
||||
description="Premium haircuts, modern styling, and true craftsmanship in Wetzlar. Experience a new level of detail."
|
||||
tag="4.6 Rating | 200+ Clients"
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Appointment",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
text: "Walk-In Today",
|
||||
href: "#footer",
|
||||
},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/retro-theatre-scene-celebrate-world-theatre-day_23-2151211458.jpg?_wi=1",
|
||||
imageAlt: "Luxury Barbershop Interior",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-happy-woman-floral-vneck-dress-holds-pen-designs-new-fashion-collections-charming-lady-talks-phone_197531-29845.jpg?_wi=1",
|
||||
imageAlt: "Precision Women Styling",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/winter-sports-gear-accessories_482257-76733.jpg?_wi=1",
|
||||
imageAlt: "Relaxing Salon Experience",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-combing-customer-hair_23-2148256891.jpg?_wi=1",
|
||||
imageAlt: "Expert Women Styling",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7272.jpg?_wi=1",
|
||||
imageAlt: "Precision Fade",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lovely-woman-sweater-posing-near-light-lamps_114579-81975.jpg",
|
||||
imageAlt: "Atmospheric Salon",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="trust" data-section="trust">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={true}
|
||||
tag="Our Promise"
|
||||
title="A New Standard of Service"
|
||||
description="We understand that your trust is earned through consistency. At Unicut, we have overhauled our operations to ensure you receive the professional, respectful experience you deserve."
|
||||
subdescription="No more long waits, no hygiene concerns, and a team that listens to exactly what you want."
|
||||
icon={ShieldCheck}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/winter-sports-gear-accessories_482257-76733.jpg?_wi=2"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<PricingCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "men",
|
||||
name: "For Men",
|
||||
price: "From 25€",
|
||||
features: [
|
||||
"Precision Haircut",
|
||||
"Skin Fade / Taper",
|
||||
"Beard Styling",
|
||||
"Hot Towel Shave",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Book Men's Style",
|
||||
href: "#footer",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "women",
|
||||
name: "For Women",
|
||||
price: "From 45€",
|
||||
features: [
|
||||
"Haircut & Styling",
|
||||
"Coloring / Balayage",
|
||||
"Blowout",
|
||||
"Deep Treatments",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Book Styling",
|
||||
href: "#footer",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "extras",
|
||||
name: "Extras",
|
||||
price: "From 10€",
|
||||
features: [
|
||||
"Eyebrow Threading",
|
||||
"Kids Cuts",
|
||||
"Professional Products",
|
||||
"Consultation",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Inquire",
|
||||
href: "#footer",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Our Services"
|
||||
description="Professional craftsmanship for men and women."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Fade Transformation",
|
||||
price: "Precision",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7272.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Balayage Result",
|
||||
price: "Style",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-combing-customer-hair_23-2148256891.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Modern Cut",
|
||||
price: "Craft",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/retro-theatre-scene-celebrate-world-theatre-day_23-2151211458.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Styled Finish",
|
||||
price: "Finish",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-happy-woman-floral-vneck-dress-holds-pen-designs-new-fashion-collections-charming-lady-talks-phone_197531-29845.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="Before & After"
|
||||
description="See the results of our precision craftsmanship."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="reviews" data-section="reviews">
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael K.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/client-getting-new-haircut-from_23-2148257046.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Lisa M.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67003.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David L.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-making-ok-sign_1368-6336.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Marc B.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/make-up-artist-work-her-beauty-visage-studio-salon-woman-applying-by-professional-make-up-master-beauty-club-concept_627829-9054.jpg",
|
||||
},
|
||||
]}
|
||||
cardTitle="What Our Clients Say"
|
||||
cardTag="We constantly improve based on your feedback."
|
||||
cardAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardTen
|
||||
useInvertedBackground={true}
|
||||
title="Meet the Experts"
|
||||
tag="Passionate professionals dedicated to your style."
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Alexander",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beauty-woman-s-with-blue-eyes-portrait_633478-325.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Elena",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/redhead-female-supervisor-dressed-elegant-suit-grey-background_613910-10390.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Tobias",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-male-with-tattooed-crossed-arms-grey-background_613910-1610.jpg",
|
||||
},
|
||||
]}
|
||||
memberVariant="card"
|
||||
membersAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Visit Us",
|
||||
items: [
|
||||
{
|
||||
label: "Wetzlar Center, Germany",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Opening Hours: 9am-7pm",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Call: +49 6441 XXX",
|
||||
href: "tel:+49",
|
||||
},
|
||||
{
|
||||
label: "WhatsApp Booking",
|
||||
href: "https://wa.me/49",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Impressum",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Unicut Salon Wetzlar"
|
||||
bottomRightText="Precision. Style. Experience."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
<ThemeProvider>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline navItems={navItems} brandName="UNICUT" />
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Your Style. Perfected."
|
||||
description="Premium haircuts, modern styling, and true craftsmanship in Wetzlar. Experience a new level of detail."
|
||||
tag="4.6 Rating | 200+ Clients"
|
||||
buttons={[{ text: "Book Appointment", href: "#services" }, { text: "Walk-In Today", href: "#footer" }]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/retro-theatre-scene-celebrate-world-theatre-day_23-2151211458.jpg", imageAlt: "Luxury Barbershop Interior" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/cheerful-happy-woman-floral-vneck-dress-holds-pen-designs-new-fashion-collections-charming-lady-talks-phone_197531-29845.jpg", imageAlt: "Precision Women Styling" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/winter-sports-gear-accessories_482257-76733.jpg", imageAlt: "Relaxing Salon Experience" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-combing-customer-hair_23-2148256891.jpg", imageAlt: "Expert Women Styling" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7272.jpg", imageAlt: "Precision Fade" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/lovely-woman-sweater-posing-near-light-lamps_114579-81975.jpg", imageAlt: "Atmospheric Salon" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="trust" data-section="trust">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={true}
|
||||
tag="Our Promise"
|
||||
title="A New Standard of Service"
|
||||
description="We understand that your trust is earned through consistency. At Unicut, we have overhauled our operations to ensure you receive the professional, respectful experience you deserve."
|
||||
subdescription="No more long waits, no hygiene concerns, and a team that listens to exactly what you want."
|
||||
icon={ShieldCheck}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/winter-sports-gear-accessories_482257-76733.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<PricingCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "men", name: "For Men", price: "From 25€", features: ["Precision Haircut", "Skin Fade / Taper", "Beard Styling", "Hot Towel Shave"], buttons: [{ text: "Book Men's Style", href: "#footer" }] },
|
||||
{ id: "women", name: "For Women", price: "From 45€", features: ["Haircut & Styling", "Coloring / Balayage", "Blowout", "Deep Treatments"], buttons: [{ text: "Book Styling", href: "#footer" }] },
|
||||
{ id: "extras", name: "Extras", price: "From 10€", features: ["Eyebrow Threading", "Kids Cuts", "Professional Products", "Consultation"], buttons: [{ text: "Inquire", href: "#footer" }] }
|
||||
]}
|
||||
title="Our Services"
|
||||
description="Professional craftsmanship for men and women."
|
||||
/>
|
||||
</div>
|
||||
<div id="gallery" data-section="gallery">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{ id: "1", name: "Fade Transformation", price: "Precision", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7272.jpg" },
|
||||
{ id: "2", name: "Balayage Result", price: "Style", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-combing-customer-hair_23-2148256891.jpg" },
|
||||
{ id: "3", name: "Modern Cut", price: "Craft", imageSrc: "http://img.b2bpic.net/free-photo/retro-theatre-scene-celebrate-world-theatre-day_23-2151211458.jpg" },
|
||||
{ id: "4", name: "Styled Finish", price: "Finish", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-happy-woman-floral-vneck-dress-holds-pen-designs-new-fashion-collections-charming-lady-talks-phone_197531-29845.jpg" }
|
||||
]}
|
||||
title="Before & After"
|
||||
description="See the results of our precision craftsmanship."
|
||||
/>
|
||||
</div>
|
||||
<div id="reviews" data-section="reviews">
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah J.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg" },
|
||||
{ id: "2", name: "Michael K.", imageSrc: "http://img.b2bpic.net/free-photo/client-getting-new-haircut-from_23-2148257046.jpg" },
|
||||
{ id: "3", name: "Lisa M.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67003.jpg" },
|
||||
{ id: "4", name: "David L.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-making-ok-sign_1368-6336.jpg" },
|
||||
{ id: "5", name: "Marc B.", imageSrc: "http://img.b2bpic.net/free-photo/make-up-artist-work-her-beauty-visage-studio-salon-woman-applying-by-professional-make-up-master-beauty-club-concept_627829-9054.jpg" }
|
||||
]}
|
||||
cardTitle="What Our Clients Say"
|
||||
cardTag="We constantly improve based on your feedback."
|
||||
cardAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardTen
|
||||
useInvertedBackground={true}
|
||||
title="Meet the Experts"
|
||||
tag="Passionate professionals dedicated to your style."
|
||||
members={[
|
||||
{ id: "1", name: "Alexander", imageSrc: "http://img.b2bpic.net/free-photo/beauty-woman-s-with-blue-eyes-portrait_633478-325.jpg" },
|
||||
{ id: "2", name: "Elena", imageSrc: "http://img.b2bpic.net/free-photo/redhead-female-supervisor-dressed-elegant-suit-grey-background_613910-10390.jpg" },
|
||||
{ id: "3", name: "Tobias", imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-male-with-tattooed-crossed-arms-grey-background_613910-1610.jpg" }
|
||||
]}
|
||||
memberVariant="card"
|
||||
membersAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Visit Us", items: [{ label: "Wetzlar Center, Germany", href: "#" }, { label: "Opening Hours: 9am-7pm", href: "#" }] },
|
||||
{ title: "Contact", items: [{ label: "Call: +49 6441 XXX", href: "tel:+49" }, { label: "WhatsApp Booking", href: "https://wa.me/49" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Impressum", href: "#" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 Unicut Salon Wetzlar"
|
||||
bottomRightText="Precision. Style. Experience."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user