Merge version_2 into main #8
145
src/app/page.tsx
145
src/app/page.tsx
@@ -2,106 +2,93 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import { Scissors, MapPin, Star } from "lucide-react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="background-highlight"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Why Prime", id: "why-prime" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Find Us", id: "find-us" },
|
||||
]}
|
||||
brandName="Prime Parturi"
|
||||
/>
|
||||
<div id="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Why Prime", id: "why-prime" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Find Us", id: "find-us" }
|
||||
]}
|
||||
brandName="Prime Parturi"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
background={{ variant: "plain" }}
|
||||
title="Fresh cut, good vibes"
|
||||
description="Premium barber services in the heart of Tampere. Clean, sharp, and welcoming."
|
||||
mediaAnimation="opacity"
|
||||
imageSrc="https://images.unsplash.com/photo-1599351431202-180f0b4b098d?q=80&w=2000"
|
||||
imageAlt="Modern barbershop interior"
|
||||
testimonials={[
|
||||
{ name: "Alex P.", handle: "@alexp", testimonial: "Best cut in Tampere, hands down.", rating: 5 }
|
||||
]}
|
||||
/>
|
||||
<div id="hero" style={{ backgroundColor: "#001a0a" }}>
|
||||
<HeroSplitTestimonial
|
||||
title="Fresh cut, good vibes"
|
||||
description="Premium barber services in the heart of Tampere. Professional craft, relaxed atmosphere."
|
||||
background={{ variant: "plain" }}
|
||||
testimonials={[]}
|
||||
mediaItems={[{ imageSrc: "https://img.b2bpic.net/free-photo/barber-shop-concept-with-man-getting-haircut_23-2148722916.jpg", imageAlt: "Barber shop interior" }]}
|
||||
rating={5}
|
||||
ratingText="5-star reviews in Tampere"
|
||||
className="text-white"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="why-prime" data-section="why-prime">
|
||||
<FeatureCardTwentySeven
|
||||
title="Why Prime?"
|
||||
description="We believe in precision, comfort, and the classic barber tradition."
|
||||
textboxLayout="split"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: "1", title: "Master Barbers", descriptions: ["Years of experience", "Modern and classic styles"] },
|
||||
{ id: "2", title: "Fresh Vibe", descriptions: ["Relaxing environment", "Free coffee & music"] },
|
||||
{ id: "3", title: "Premium Quality", descriptions: ["Top shelf products", "Sanitized gear"] },
|
||||
{ id: "4", title: "Heart of Tampere", descriptions: ["Easy access", "Central location"] },
|
||||
]}
|
||||
/>
|
||||
<div id="why-prime" style={{ backgroundColor: "#f9f9f9" }}>
|
||||
<FeatureCardTwentySeven
|
||||
title="Why Prime"
|
||||
description="We combine traditional techniques with a modern approach to grooming."
|
||||
features={[
|
||||
{ id: "1", title: "Expert Barbers", descriptions: ["Years of experience in professional styling"], imageSrc: "https://img.b2bpic.net/free-photo/young-man-getting-haircut-by-barber_1303-26301.jpg" },
|
||||
{ id: "2", title: "Premium Quality", descriptions: ["Only the best products for your hair and skin"], imageSrc: "https://img.b2bpic.net/free-photo/barber-tools-table_23-2148722926.jpg" },
|
||||
{ id: "3", title: "Relaxed Vibe", descriptions: ["A sanctuary for your morning ritual"], imageSrc: "https://img.b2bpic.net/free-photo/barbershop-interior_23-2148722914.jpg" },
|
||||
{ id: "4", title: "Local Roots", descriptions: ["Proudly serving Tampere locals"], imageSrc: "https://img.b2bpic.net/free-photo/barber-shop-interior-with-mirror_23-2148722922.jpg" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<ProductCardTwo
|
||||
title="Our Services"
|
||||
description="Professional care for your hair and beard."
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "s1", brand: "", name: "Classic Haircut", price: "35€", rating: 5, reviewCount: "45min", imageSrc: "" },
|
||||
{ id: "s2", brand: "", name: "Beard Trim", price: "20€", rating: 5, reviewCount: "20min", imageSrc: "" },
|
||||
{ id: "s3", brand: "", name: "Haircut & Beard", price: "50€", rating: 5, reviewCount: "60min", imageSrc: "" },
|
||||
{ id: "s4", brand: "", name: "Kids Cut", price: "25€", rating: 5, reviewCount: "30min", imageSrc: "" },
|
||||
]}
|
||||
/>
|
||||
<div id="services" style={{ backgroundColor: "#f9f9f9" }}>
|
||||
<ProductCardTwo
|
||||
title="Minimal Services"
|
||||
description="Clear pricing for high-quality cuts."
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
products={[
|
||||
{ id: "1", name: "Classic Cut", price: "35€", imageSrc: "https://img.b2bpic.net/free-photo/man-getting-haircut-barbershop_23-2148722934.jpg" },
|
||||
{ id: "2", name: "Beard Trim", price: "20€", imageSrc: "https://img.b2bpic.net/free-photo/barber-trimming-beard_23-2148722940.jpg" },
|
||||
{ id: "3", name: "Full Grooming", price: "50€", imageSrc: "https://img.b2bpic.net/free-photo/barber-cutting-hair_23-2148722936.jpg" },
|
||||
{ id: "4", name: "Kids Cut", price: "25€", imageSrc: "https://img.b2bpic.net/free-photo/barber-shop-interior_23-2148722912.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="find-us" data-section="find-us">
|
||||
<ContactCenter
|
||||
tag="Visit Us"
|
||||
title="Find Us"
|
||||
description="Hämeenkatu, Tampere. Walk-ins welcome, reservations preferred."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="Prime Parturi"
|
||||
imageSrc="https://images.unsplash.com/photo-1503951914875-452162b09f6f?q=80&w=2000"
|
||||
columns={[
|
||||
{ title: "Contact", items: [{ label: "Email: info@primeparturi.fi", href: "mailto:info@primeparturi.fi" }] },
|
||||
{ title: "Socials", items: [{ label: "Instagram", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
<div id="find-us" style={{ backgroundColor: "#001a0a" }}>
|
||||
<ContactCenter
|
||||
title="Find Us"
|
||||
description="Visit us in Tampere. Open daily by appointment."
|
||||
tag="Contact"
|
||||
background={{ variant: "plain" }}
|
||||
className="text-white"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user