"use client"; import React from "react"; import { Linkedin } from "lucide-react"; import { Reveal } from "@/components/Reveal"; import { TechBackground } from "@/components/TechBackground"; interface Person { name: string; role: string; linkedin: string; } interface AboutIntroProps { paragraphs: string[]; team: Person[]; } export function AboutIntro({ paragraphs, team }: AboutIntroProps) { return (
02
{paragraphs.map((p, i) => (

{p}

))}
{team.map((person, i) => (

{person.name}

{person.role}

))}
); }