Update src/app/team/page.tsx

This commit is contained in:
2026-03-05 00:49:15 +00:00
parent 60e4bcfe08
commit 455fb599e8

View File

@@ -6,6 +6,7 @@ import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/Nav
import TeamCardEleven from "@/components/sections/team/TeamCardEleven";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { Users } from "lucide-react";
export default function TeamPage() {
return (
@@ -40,47 +41,19 @@ export default function TeamPage() {
<TeamCardEleven
groups={[
{
id: "partners",
groupTitle: "Senior Partners",
members: [
id: "partners", groupTitle: "Senior Partners", members: [
{
id: "1",
title: "Robert Harmon",
subtitle: "Founding Partner",
detail: "robert@harmonlegal.com",
imageSrc: "http://img.b2bpic.net/free-photo/man-blue-suit-posing-white-artistic-wall-from-bricks_613910-3011.jpg?_wi=1",
imageAlt: "Robert Harmon, Founding Partner",
},
id: "1", title: "Robert Harmon", subtitle: "Founding Partner", detail: "robert@harmonlegal.com", imageSrc: "http://img.b2bpic.net/free-photo/man-blue-suit-posing-white-artistic-wall-from-bricks_613910-3011.jpg", imageAlt: "Robert Harmon, Founding Partner"},
{
id: "2",
title: "Elizabeth Bennett",
subtitle: "Senior Partner",
detail: "elizabeth@harmonlegal.com",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-employee-with-crossed-arms_1098-3148.jpg?_wi=1",
imageAlt: "Elizabeth Bennett, Senior Partner",
},
id: "2", title: "Elizabeth Bennett", subtitle: "Senior Partner", detail: "elizabeth@harmonlegal.com", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-employee-with-crossed-arms_1098-3148.jpg", imageAlt: "Elizabeth Bennett, Senior Partner"},
],
},
{
id: "associates",
groupTitle: "Trial Attorneys",
members: [
id: "associates", groupTitle: "Trial Attorneys", members: [
{
id: "3",
title: "Michael Patterson",
subtitle: "Lead Trial Attorney",
detail: "michael@harmonlegal.com",
imageSrc: "http://img.b2bpic.net/free-photo/man-blue-suit-posing-white-artistic-wall-from-bricks_613910-3011.jpg?_wi=2",
imageAlt: "Michael Patterson, Lead Trial Attorney",
},
id: "3", title: "Michael Patterson", subtitle: "Lead Trial Attorney", detail: "michael@harmonlegal.com", imageSrc: "http://img.b2bpic.net/free-photo/man-blue-suit-posing-white-artistic-wall-from-bricks_613910-3011.jpg", imageAlt: "Michael Patterson, Lead Trial Attorney"},
{
id: "4",
title: "Jessica Wong",
subtitle: "Personal Injury Specialist",
detail: "jessica@harmonlegal.com",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-employee-with-crossed-arms_1098-3148.jpg?_wi=2",
imageAlt: "Jessica Wong, Personal Injury Specialist",
},
id: "4", title: "Jessica Wong", subtitle: "Personal Injury Specialist", detail: "jessica@harmonlegal.com", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-employee-with-crossed-arms_1098-3148.jpg", imageAlt: "Jessica Wong, Personal Injury Specialist"},
],
},
]}
@@ -88,7 +61,7 @@ export default function TeamPage() {
title="Meet Our Legal Team"
description="Award-winning attorneys dedicated to your case and committed to maximizing your recovery."
tag="Expert Advocates"
tagIcon="Users"
tagIcon={Users}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
@@ -120,8 +93,8 @@ export default function TeamPage() {
},
{
items: [
{ label: "Our Team", href: "/team" },
{ label: "Client Testimonials", href: "/#testimonials" },
{ label: "Our Team", href: "#team" },
{ label: "Client Testimonials", href: "#testimonials" },
{ label: "Contact", href: "/contact" },
],
},