import { SectionContainer } from "@/components/shared/SectionContainer"; import { PageContainer } from "@/components/shared/PageContainer"; import { RevealOnView } from "@/components/shared/RevealOnView"; import { Icon } from "@/components/shared/Icon"; import { whoWeAre } from "@/data/about"; /** WhoWeAre — balanced two-column: positioning statement + what/who/why. */ export function WhoWeAre() { return (
{/* Left */} {whoWeAre.eyebrow}

{whoWeAre.title}

{whoWeAre.lead}

{/* Right */}
{whoWeAre.points.map((point, index) => (

{point.title}

{point.description}

))}
); }