import { CheckCircle2 } from "lucide-react"; import type { Messages } from "@/messages"; import AnimatedSection from "./AnimatedSection"; import SectionHeader from "./SectionHeader"; export default function AboutSection({ t }: { t: Messages }) { return (
{t.about.cards.map((card) => (
{card}
))}
); }