From 1d3e373a4a67c4fff5462a99b7bd63b1cfe0eb8d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 01:51:41 +0000 Subject: [PATCH] Update src/app/team/page.tsx --- src/app/team/page.tsx | 109 +++++++++++------------------------------- 1 file changed, 28 insertions(+), 81 deletions(-) diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx index b5e02d2..96cc42c 100644 --- a/src/app/team/page.tsx +++ b/src/app/team/page.tsx @@ -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() {
-
-
- -
-