Files
b794bcf3-53a8-4bf5-ba39-325…/src/app/services/page.tsx

208 lines
6.2 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { CalendarCheck } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="noise"
cardStyle="gradient-mesh"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Services",
id: "services",
},
{
name: "Team",
id: "team",
},
{
name: "Pricing",
id: "pricing",
},
{
name: "Testimonials",
id: "testimonials",
},
{
name: "FAQ",
id: "faq",
},
{
name: "Contact",
id: "contact",
},
]}
button={{
text: "Book Now",
href: "#contact",
}}
brandName="Banyan Barber Shop"
/>
</div>
<div id="services-offerings" data-section="services-offerings">
<FeatureCardOne
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
features={[
{
title: "Precision Haircuts",
description: "Our skilled barbers provide modern and classic cuts tailored to your personal style and preferences.",
imageSrc: "https://pixabay.com/get/gf236828270bdc94a1e0d88785188ad900a50eba4e09b76a84c3a3204c718ed9735efddb72c6b90d14abca97594ea05a7e40813497b7b71bdfb504573ddb3fa66_1280.jpg?_wi=2",
imageAlt: "barber giving fresh haircut",
button: {
text: "Book Haircut",
href: "/contact",
},
},
{
title: "Classic Hot Lather Shave",
description: "Indulge in a traditional hot towel shave for a smooth, refreshing, and incredibly close finish.",
imageSrc: "https://pixabay.com/get/g3019e74e06470b3efd6f291738dc28c6fbf8bf38e4effc4a77c642fe3aa1b9ae6381466924e4e1bcc4732c8da58c9d64fe81632d7e6c290fec62b0fcea79e26b_1280.jpg?_wi=2",
imageAlt: "traditional hot lather shave barber",
button: {
text: "Book Shave",
href: "/contact",
},
},
{
title: "Expert Beard Trims",
description: "Shape, trim, and style your beard to perfection, enhancing your facial features with precision.",
imageSrc: "https://pixabay.com/get/g759f0c9165895704161cedcbf914df4c58c1970994bd7114388239f70ec3ed3afc709855042238e7dc092f471176a13a46d8c88208094b4a442a60158ada8904_1280.jpg?_wi=2",
imageAlt: "barber trimming beard close up",
button: {
text: "Book Beard Trim",
href: "/contact",
},
},
{
title: "Modern Styling & Treatments",
description: "From contemporary styling to invigorating hair treatments, we ensure your hair looks and feels its best.",
imageSrc: "https://pixabay.com/get/g7ba4d4ac14cbc520a61eb42288cbb173101459c61863c92fb248a91124aa7e0cbc0433e25865198b25ebf02b7391e1ffd4bdc4bad79404cacd8d7f873870f2d1_1280.jpg?_wi=2",
imageAlt: "barber working on client hair",
button: {
text: "Explore Styling",
href: "/contact",
},
},
]}
title="Our Signature Services"
description="Experience unparalleled grooming with our expert barbers and stylists. Each service is crafted to elevate your look and provide a moment of relaxation."
tag="What We Offer"
tagIcon={ScissorsSquare}
buttons={[
{
text: "View All",
href: "/services",
},
]}
/>
</div>
<div id="services-cta" data-section="services-cta">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "sparkles-gradient",
}}
tag="Book Now"
tagIcon={CalendarCheck}
title="Ready for Your Transformation?"
description="Schedule your next appointment with our skilled professionals. We're excited to help you achieve your perfect look."
buttons={[
{
text: "Book Online",
href: "/contact",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Services",
items: [
{
label: "Haircuts",
href: "/services",
},
{
label: "Shaves",
href: "/services",
},
{
label: "Beard Trims",
href: "/services",
},
{
label: "Styling",
href: "/services",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Our Team",
href: "/team",
},
{
label: "Careers",
href: "/careers",
},
],
},
{
title: "Support",
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "FAQ",
href: "/faq",
},
{
label: "Privacy Policy",
href: "/privacy",
},
],
},
]}
logoText="Banyan Barber Shop"
copyrightText="© 2024 Banyan Barber Shop. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}