Update src/app/team/page.tsx

This commit is contained in:
2026-03-31 12:39:31 +00:00
parent 68bb5cfa6b
commit 7c26b45c19

View File

@@ -7,7 +7,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
export default function LandingPage() {
export default function TeamPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -22,129 +22,79 @@ export default function LandingPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Startseite",
id: "/",
},
{
name: "Praxis",
id: "/praxis",
},
{
name: "Team",
id: "/team",
},
{
name: "Kontakt",
id: "/kontakt",
},
]}
brandName="Logo"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Startseite", id: "/" },
{ name: "Praxis", id: "/praxis" },
{ name: "Team", id: "/team" },
{ name: "Kontakt", id: "/kontakt" },
]}
brandName="Logo"
/>
</div>
<div id="team-section" data-section="team-section">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
groups={[
{
id: "team-1",
groupTitle: "Das medizinische Fachpersonal",
members: [
{
id: "m1",
title: "Dr. med. Maria Muster",
subtitle: "Fachärztin",
detail: "Expertin für Frauengesundheit mit 15 Jahren Erfahrung.",
},
{
id: "m2",
title: "Petra Praxis",
subtitle: "MPA",
detail: "Ihre Ansprechpartnerin am Empfang und bei der Laborarbeit.",
},
{
id: "m3",
title: "Sarah Hilfe",
subtitle: "MPA",
detail: "Begleitung bei Untersuchungen und Organisation.",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/living-room-with-modern-beautiful-decoration_181624-30650.jpg?_wi=2",
imageAlt: "modern medical practice interior background",
},
]}
title="Unser Team"
description="Erfahrene Hände für Ihre Gesundheit."
/>
</div>
<div id="team-section" data-section="team-section">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Unser Team"
description="Erfahrene Hände für Ihre Gesundheit."
groups={[
{
id: "team-1", groupTitle: "Das medizinische Fachpersonal", members: [
{
id: "m1", title: "Dr. med. Maria Muster", subtitle: "Fachärztin", detail: "Expertin für Frauengesundheit mit 15 Jahren Erfahrung.", imageSrc: "http://img.b2bpic.net/free-photo/living-room-with-modern-beautiful-decoration_181624-30650.jpg", imageAlt: "modern medical practice interior background"
},
{
id: "m2", title: "Petra Praxis", subtitle: "MPA", detail: "Ihre Ansprechpartnerin am Empfang und bei der Laborarbeit."
},
{
id: "m3", title: "Sarah Hilfe", subtitle: "MPA", detail: "Begleitung bei Untersuchungen und Organisation."
},
]
},
]}
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Mehr erfahren"
description="Jeder aus unserem Team ist spezialisiert auf einen Fachbereich."
members={[
{
id: "m5",
name: "Dr. Anna",
role: "Fachärztin",
description: "Expertin für Pränataldiagnostik.",
imageSrc: "http://img.b2bpic.net/free-photo/doctor-patient-ophthalmologist-s-office_23-2150923347.jpg?_wi=6",
},
]}
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Mehr erfahren"
description="Jeder aus unserem Team ist spezialisiert auf einen Fachbereich."
members={[
{
id: "m5", name: "Dr. Anna", role: "Fachärztin", description: "Expertin für Pränataldiagnostik.", imageSrc: "http://img.b2bpic.net/free-photo/doctor-patient-ophthalmologist-s-office_23-2150923347.jpg"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Navigation",
items: [
{
label: "Startseite",
href: "/",
},
{
label: "Praxis",
href: "/praxis",
},
{
label: "Team",
href: "/team",
},
{
label: "Kontakt",
href: "/kontakt",
},
],
},
{
title: "Rechtliches",
items: [
{
label: "Impressum",
href: "#",
},
{
label: "Datenschutz",
href: "#",
},
],
},
]}
copyrightText="© 2024 Frauenpraxis Musterstadt. Alle Rechte vorbehalten."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Navigation", items: [
{ label: "Startseite", href: "/" },
{ label: "Praxis", href: "/praxis" },
{ label: "Team", href: "/team" },
{ label: "Kontakt", href: "/kontakt" },
],
},
{
title: "Rechtliches", items: [
{ label: "Impressum", href: "#" },
{ label: "Datenschutz", href: "#" },
],
},
]}
copyrightText="© 2024 Frauenpraxis Musterstadt. Alle Rechte vorbehalten."
/>
</div>
</ReactLenis>
</ThemeProvider>
);