179 lines
7.7 KiB
TypeScript
179 lines
7.7 KiB
TypeScript
"use client"
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
|
import TextAbout from '@/components/sections/about/TextAbout';
|
|
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
|
import ContactText from '@/components/sections/contact/ContactText';
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
import { Star, Info, Scissors, ThumbsUp } from 'lucide-react';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-bubble"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="mediumSmall"
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
background="blurBottom"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="bold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Naughty Bro PH"
|
|
navItems={[
|
|
{ name: "Services", id: "services" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Reviews", id: "testimonials" },
|
|
{ name: "Contact", id: "contact" }
|
|
]}
|
|
button={{ text: "Call Now", href: "tel:0908-273-0158" }}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboard
|
|
title="Premium Grooming Redefined"
|
|
description="5.0★ Rated barber shop in Quezon City. Expert haircuts, smooth grooming, and a welcoming atmosphere. Open from 4 PM daily."
|
|
background={{ variant: "plain" }}
|
|
tag="⭐ 5.0 Rating • 42 Reviews"
|
|
tagIcon={Star}
|
|
buttons={[
|
|
{ text: "Call Now: 0908 273 0158", href: "tel:0908-273-0158" },
|
|
{ text: "Contact Us", href: "#contact" }
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/brown-vintage-leather-chairs-stylish-barber-shop_627829-6188.jpg"
|
|
imageAlt="Naughty Bro PH Barber Shop Interior"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TextAbout
|
|
tag="About Us"
|
|
tagIcon={Info}
|
|
title="Your Neighborhood's Trusted Barber Shop Since Day One"
|
|
useInvertedBackground={false}
|
|
buttons={[
|
|
{ text: "Book Your Appointment", href: "#contact" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardTwentyThree
|
|
title="Our Services"
|
|
description="Comprehensive grooming solutions tailored to your style"
|
|
tag="Services"
|
|
tagIcon={Scissors}
|
|
features={[
|
|
{
|
|
id: "1", title: "Classic Haircuts", tags: ["Premium Technique • 30 mins • ₱250-350"],
|
|
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", imageAlt: "Professional haircut service"
|
|
},
|
|
{
|
|
id: "2", title: "Beard & Grooming", tags: ["Expert Shaping • 20 mins • ₱150-200"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/barber-cutting-beard-crop-client_23-2147778893.jpg", imageAlt: "Beard grooming expertise"
|
|
},
|
|
{
|
|
id: "3", title: "Precision Cuts", tags: ["Detailed Design • 45 mins • ₱350-450"],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-hairdresser-modeling-beard-barbershop-close-up-photo_613910-18422.jpg", imageAlt: "Precision haircut design"
|
|
}
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTwelve
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Carlos M.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg", imageAlt: "Carlos M."
|
|
},
|
|
{
|
|
id: "2", name: "Antonio R.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-face-portrait-wearing-suit_53876-148135.jpg", imageAlt: "Antonio R."
|
|
},
|
|
{
|
|
id: "3", name: "Miguel S.", imageSrc: "http://img.b2bpic.net/free-photo/serious-young-man-looking_74855-3108.jpg", imageAlt: "Miguel S."
|
|
},
|
|
{
|
|
id: "4", name: "Juan D.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg", imageAlt: "Juan D."
|
|
}
|
|
]}
|
|
cardTitle="Trusted by Over 10,000 Satisfied Customers"
|
|
cardTag="See What Our Clients Say"
|
|
cardTagIcon={ThumbsUp}
|
|
cardAnimation="slide-up"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="socialproof" data-section="socialproof">
|
|
<SocialProofOne
|
|
title="Recognized Excellence"
|
|
description="Consistently rated 5-stars by customers on Google and local review platforms"
|
|
tag="Local Trust"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
names={[
|
|
"Google Reviews 5.0★", "Top-Rated Barber", "Recommended Grooming", "Best in QC", "Customer Choice", "Excellence Badge", "Trusted Since Day One"
|
|
]}
|
|
speed={35}
|
|
showCard={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactText
|
|
text="Ready for your best haircut? Call us today or fill out the form below. We're open from 4 PM and ready to make you look sharp."
|
|
animationType="entrance-slide"
|
|
background={{ variant: "sparkles-gradient" }}
|
|
useInvertedBackground={false}
|
|
buttons={[
|
|
{ text: "Call Now", href: "tel:0908-273-0158" },
|
|
{ text: "Get Directions", href: "https://maps.google.com/?q=Capitol+Greenstreet+Quezon+City" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{
|
|
title: "Shop", items: [
|
|
{ label: "Services", href: "#services" },
|
|
{ label: "About", href: "#about" },
|
|
{ label: "Contact", href: "#contact" }
|
|
]
|
|
},
|
|
{
|
|
title: "Contact", items: [
|
|
{ label: "Call: 0908 273 0158", href: "tel:0908-273-0158" },
|
|
{ label: "Capitol Greenstreet, QC", href: "https://maps.google.com/?q=Capitol+Greenstreet+Quezon+City" },
|
|
{ label: "Open from 4 PM Daily", href: "#" }
|
|
]
|
|
},
|
|
{
|
|
title: "Legal", items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" }
|
|
]
|
|
}
|
|
]}
|
|
bottomLeftText="© 2025 Naughty Bro PH. All rights reserved."
|
|
bottomRightText="Crafted with precision and care"
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|