Files
309f34cc-3f2f-4f7c-965b-8ee…/src/app/team/page.tsx
2026-02-12 17:29:48 +00:00

166 lines
6.4 KiB
TypeScript

"use client";
import Link from "next/link";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Users, Award, Mail } from "lucide-react";
export default function TeamPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="fluid"
cardStyle="glass-depth"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
brandName="The Edge"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Team", id: "/team" },
{ name: "Contact", id: "/contact" }
]}
bottomLeftText="Premium Barbershop"
bottomRightText="hello@theedgebarbershop.com"
/>
</div>
<div id="team-members" data-section="team-members">
<TeamCardSix
title="Meet Our Master Barbers"
description="Our certified professionals bring decades of combined experience in precision grooming, styling, and traditional barbering techniques"
tag="Expert Team"
tagIcon={Users}
members={[
{
id: "1",
name: "Marcus Johnson",
role: "Head Barber & Founder",
imageSrc: "https://img.b2bpic.net/free-photo/handsome-businessman-barber-shop_1157-21514.jpg",
imageAlt: "Marcus Johnson, Head Barber"
},
{
id: "2",
name: "David Chen",
role: "Master Stylist",
imageSrc: "https://img.b2bpic.net/free-photo/serious-elegant-bearded-male-wearing-classic-waistcoat-slim-bow-tie_613910-1520.jpg",
imageAlt: "David Chen, Master Stylist"
},
{
id: "3",
name: "James Williams",
role: "Senior Barber",
imageSrc: "https://img.b2bpic.net/free-photo/portrait-pensive-man-with-receive-moustache-beard-trimming-procedure-barbershop_613910-15033.jpg",
imageAlt: "James Williams, Senior Barber"
},
{
id: "4",
name: "Rafael Santos",
role: "Specialist Barber",
imageSrc: "https://img.b2bpic.net/free-photo/studio-portrait-bearded-photographer-wearing-classic-suit-holding-retro-camera-standing-with-his-arms-crossed_613910-19282.jpg",
imageAlt: "Rafael Santos, Specialist Barber"
}
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="team-testimonials" data-section="team-testimonials">
<TestimonialCardTwelve
testimonials={[
{
id: "1",
name: "Michael Roberts",
imageSrc: "https://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg",
imageAlt: "Michael Roberts"
},
{
id: "2",
name: "Christopher Lee",
imageSrc: "https://img.b2bpic.net/free-photo/smiling-handsome-businessman-leaning-knees_1262-5774.jpg",
imageAlt: "Christopher Lee"
},
{
id: "3",
name: "Jonathan Martinez",
imageSrc: "https://img.b2bpic.net/free-photo/closeup-confident-male-employee-white-collar-shirt-smiling-camera-standing-selfassured-agai_1258-112592.jpg",
imageAlt: "Jonathan Martinez"
},
{
id: "4",
name: "Thomas Anderson",
imageSrc: "https://img.b2bpic.net/free-photo/closeup-confident-businessman-turn-face-camera-smiling-selfassured-standing-white-backgro_1258-113227.jpg",
imageAlt: "Thomas Anderson"
}
]}
cardTitle="Our expert team delivers exceptional results that keep clients coming back for premium service"
cardTag="Client Approved"
cardTagIcon={Award}
useInvertedBackground={false}
cardAnimation="blur-reveal"
/>
</div>
<div id="meet-team" data-section="meet-team">
<ContactCenter
tag="Book With Us"
tagIcon={Mail}
title="Experience Our Team's Expertise"
description="Schedule an appointment with any of our master barbers and discover why clients trust The Edge for their grooming needs."
background={{ variant: "plain" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Book Now"
termsText="We'll help you choose the perfect barber for your needs and schedule your appointment within 24 hours."
/>
</div>
<FooterBaseCard
logoText="The Edge"
columns={[
{
title: "Services",
items: [
{ label: "Haircuts", href: "/services" },
{ label: "Beard Grooming", href: "/services" },
{ label: "Hot Shave", href: "/services" }
]
},
{
title: "Company",
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "/team" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Connect",
items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Google Reviews", href: "https://google.com/reviews" }
]
}
]}
copyrightText="© 2025 The Edge Barbershop. All rights reserved."
/>
</ThemeProvider>
);
}