import { SectionContainer } from "@/components/shared/SectionContainer"; import { PageContainer } from "@/components/shared/PageContainer"; import { SectionHeading } from "@/components/shared/SectionHeading"; import { RevealOnView } from "@/components/shared/RevealOnView"; import { tenextButton as TenextButton } from "@/components/shared/Button"; import { Icon } from "@/components/shared/Icon"; import { practiceTeamCards } from "@/data/about"; /** * AboutPracticeTeams — the disciplines that staff an engagement. * Each card has a unique gradient header and icon (no repeated artwork, * no invented individuals). */ export function AboutPracticeTeams() { return (
See open roles
{practiceTeamCards.map((team, index) => (
{/* Unique gradient header */}

{team.name}

/ {team.focus} /

{team.description}

))}
); }