From f0b95abaa61f5e407fa95dfc8581519af6859085 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 10:47:35 +0000 Subject: [PATCH] Add src/app/team/page.tsx --- src/app/team/page.tsx | 118 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 src/app/team/page.tsx diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx new file mode 100644 index 0000000..9458c11 --- /dev/null +++ b/src/app/team/page.tsx @@ -0,0 +1,118 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; + +const commonNavbarProps = { + navItems: [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/#about" }, + { name: "Services", id: "/#services" }, + { name: "Results", id: "/#achievements" }, + { name: "Pricing", id: "/pricing" }, + { name: "Team", id: "/team" }, + { name: "Testimonials", id: "/testimonials" }, + { name: "FAQ", id: "/#faq" } + ], + logoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c3ws6w", logoAlt: "Maryam Dental Clinic Logo", brandName: "Maryam Dental Clinic", button: { + text: "Book Consultation", href: "/#contact" + } +}; + +const commonFooterProps = { + logoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c3ws6w", logoAlt: "Maryam Dental Clinic Logo", logoText: "Maryam Dental Clinic", copyrightText: "© 2025 Maryam Dental Clinic. All rights reserved.", columns: [ + { + title: "Company", items: [ + { label: "About Us", href: "/#about" }, + { label: "Team", href: "/team" }, + { label: "Careers", href: "#" } + ] + }, + { + title: "Services", items: [ + { label: "Pricing", href: "/pricing" }, + { label: "Dental Care", href: "/#services" }, + { label: "Testimonials", href: "/testimonials" } + ] + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "FAQ", href: "/#faq" } + ] + } + ] +}; + +export default function TeamPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}