import { siteContent } from "@/data/content"; import { SectionHeading } from "@/components/ui/SectionHeading"; import { Reveal } from "@/components/ui/Reveal"; export function About() { const { about } = siteContent; return (
{about.title}
{about.paragraphs.map((text, i) => (

{text}

))}
); }