import Image from "next/image"; import Link from "next/link"; import aboutImage from "@/assets/images/about/about.jpg"; import { Reveal } from "@/components/Reveal"; import { about, site, stats } from "@/data/site"; export function About() { return (
{/* Oversized watermark, mirrored to sit at the outer edge in RTL. */}
نمای پروژه‌های گروه ساختمانی رئوفی
{/* Gold frame offset behind the photo. */}

{about.kicker}

{about.titleTop} {about.titleBottom}

{about.lead}

{about.body}

{about.closing}

{about.cta}
{/* Key numbers */}
{stats.map((stat, i) => (
{stat.latin} {stat.value} {stat.label}
))}
); }