Merge version_4 into main #5
@@ -3,15 +3,16 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Scissors } from "lucide-react";
|
||||
import { Scissors, Award, Users } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -43,7 +44,7 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
<HeroBillboard
|
||||
title="Mastery in Grooming"
|
||||
description="Experience the ultimate grooming journey tailored for the modern Malaysian gentleman."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
@@ -51,36 +52,50 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero-gallery" data-section="hero-gallery">
|
||||
<HeroBillboardGallery
|
||||
title="Our Atmosphere"
|
||||
description="Step into a sanctuary dedicated to the modern gentleman."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
mediaItems={[
|
||||
{ imageSrc: "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" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-getting-ready-their-clients_23-2149205931.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-split" data-section="about-split">
|
||||
<SplitAbout
|
||||
<MetricSplitMediaAbout
|
||||
title="Our Heritage"
|
||||
description="With 15+ years of experience, we define classic barbering excellence in KL."
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="default"
|
||||
bulletPoints={[
|
||||
{ title: "Expert Barbers", description: "Certified professionals", icon: Scissors },
|
||||
{ title: "Premium Products", description: "High-end selection", icon: Scissors }
|
||||
metrics={[
|
||||
{ value: "15+", title: "Years Experience" },
|
||||
{ value: "5k+", title: "Happy Clients" },
|
||||
{ value: "10", title: "Expert Barbers" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
names={["Barber Life", "Gentleman Weekly", "KL Style", "Classic Cuts"]}
|
||||
title="Trusted By Industry Leaders"
|
||||
description="Our expertise is recognized across the grooming industry."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-media" data-section="about-media">
|
||||
<MediaAbout
|
||||
title="The Royal Atmosphere"
|
||||
description="Step into a sanctuary dedicated to the modern gentleman."
|
||||
useInvertedBackground={true}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hairdresser-getting-ready-their-clients_23-2149205931.jpg"
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardNine
|
||||
title="Premium Services"
|
||||
description="We offer a range of specialized services to keep you looking sharp."
|
||||
showStepNumbers={true}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
features={[
|
||||
{
|
||||
title: "Classic Cuts",
|
||||
description: "Timeless cuts for the modern gentleman.",
|
||||
phoneOne: { imageSrc: "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" },
|
||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-getting-ready-their-clients_23-2149205931.jpg" }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -105,7 +120,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Got questions? Find answers to commonly asked grooming queries here."
|
||||
faqsAnimation="opacity"
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -122,6 +137,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
names={["Barber Life", "Gentleman Weekly", "KL Style", "Classic Cuts"]}
|
||||
title="Trusted By Industry Leaders"
|
||||
description="Our expertise is recognized across the grooming industry."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
@@ -134,4 +159,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user