import aboutData from "./about.json"; export default function AboutPage() { return (
{/* Header */}

{aboutData.title}

{aboutData.subtitle}

{aboutData.description}

{/* Sections */}
{aboutData.sections.map((section, index) => (

{section.heading}

{section.content}

))}
{/* Stats */}

Thành Tích Của Chúng Tôi

{aboutData.stats.map((stat, index) => (
{stat.number}
{stat.label}
))}
); }