Update src/app/team/page.tsx

This commit is contained in:
2026-03-16 01:51:41 +00:00
parent 173cdf1cae
commit 1d3e373a4a

View File

@@ -3,76 +3,50 @@
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import TeamCardTen from "@/components/sections/team/TeamCardTen";
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import TeamCardOne from "@/components/sections/team/TeamCardOne";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function TeamPage() {
const navigationItems = [
{ id: "home", name: "HOME", href: "/" },
{ id: "services", name: "SERVICES", href: "/services" },
{ id: "services", name: "SERVICES", href: "/#services" },
{ id: "team", name: "MEET THE TEAM", href: "/team" },
{ id: "about", name: "ABOUT", href: "/about" },
];
const footerColumns = [
{
title: "Visit The Rose Room",
items: [
title: "Visit The Rose Room", items: [
{
label: "(513) 524-2911",
href: "tel:(513)524-2911",
},
label: "(513) 524-2911", href: "tel:(513)524-2911"},
{
label: "318 S College Ave, Oxford OH 45056",
href: "#",
},
label: "318 S College Ave, Oxford OH 45056", href: "#"},
{
label: "Book via fresha.com",
href: "https://fresha.com",
},
label: "Book via fresha.com", href: "https://fresha.com"},
],
},
{
title: "Hours",
items: [
title: "Hours", items: [
{
label: "Monday - Friday: 9am - 6pm",
href: "#",
},
label: "Monday - Friday: 9am - 6pm", href: "#"},
{
label: "Saturday: 10am - 5pm",
href: "#",
},
label: "Saturday: 10am - 5pm", href: "#"},
{
label: "Sunday: Closed",
href: "#",
},
label: "Sunday: Closed", href: "#"},
],
},
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "Services",
href: "/services",
},
label: "Services", href: "/#services"},
{
label: "Meet the Team",
href: "/team",
},
label: "Meet the Team", href: "/team"},
{
label: "About",
href: "/about",
},
label: "About", href: "/about"},
{
label: "Book Now",
href: "https://fresha.com",
},
label: "Book Now", href: "https://fresha.com"},
],
},
];
@@ -99,56 +73,29 @@ export default function TeamPage() {
</div>
<div id="team" data-section="team">
<TeamCardTen
title="Meet the Team"
tag="A diverse group of master stylists who welcome everyone."
<TeamCardOne
title="Our Master Stylists"
description="Meet the talented team dedicated to making you feel beautiful."
tag="Experienced professionals committed to your satisfaction"
tagAnimation="blur-reveal"
membersAnimation="slide-up"
memberVariant="card"
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
members={[
{
id: "julie",
name: "Julie",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625286625-bit7cpbg.png?_wi=2",
imageAlt: "Julie, team member",
},
id: "julie", name: "Julie", role: "Master Stylist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625853495-38ran118.png", imageAlt: "Julie, Master Stylist at The Rose Room"},
{
id: "leah",
name: "Leah",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625286625-zh7ngctm.png?_wi=2",
imageAlt: "Leah, team member",
},
id: "leah", name: "Leah", role: "Master Stylist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625853495-vqat3ih6.png", imageAlt: "Leah, Master Stylist at The Rose Room"},
{
id: "brittany",
name: "Brittany",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625286625-q69rd2ag.png?_wi=2",
imageAlt: "Brittany, team member",
},
id: "brittany", name: "Brittany", role: "Master Stylist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625286625-q69rd2ag.png?_wi=1", imageAlt: "Brittany, Master Stylist at The Rose Room"},
{
id: "mariah",
name: "Mariah",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625286625-7duu3lf1.png?_wi=2",
imageAlt: "Mariah, team member",
},
id: "mariah", name: "Mariah", role: "Master Stylist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Azc1FjZzDLy0VZMsNoEXQQnd36/uploaded-1773625286625-7duu3lf1.png?_wi=1", imageAlt: "Mariah, Master Stylist at The Rose Room"},
]}
ariaLabel="Team members gallery"
/>
</div>
<div id="team-description" data-section="team-description">
<TextSplitAbout
title="Our Stylists"
description={[
"Each member of our team brings unique expertise and a passion for hair, nails, and beauty services.",
"We stay current with the latest trends, techniques, and products to ensure you receive the highest quality service.",
"Our team is committed to creating a welcoming and comfortable environment where every client feels valued and heard.",
]}
useInvertedBackground={true}
showBorder={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="The Rose Room"
@@ -158,4 +105,4 @@ export default function TeamPage() {
</div>
</ThemeProvider>
);
}
}