import Image from "next/image"; import Link from "next/link"; import { Star, ArrowRight } from "lucide-react"; import ScrollReveal from "@/components/ScrollReveal"; interface AboutSectionProps { aboutData: { image: string; badge: string; statsGuestCount: string; statsGuestLabel: string; statsYearCount: string; statsYearLabel: string; badgeIkoTitle: string; badgeIkoLabel: string; titleLine1: string; titleLine2: string; titleHighlight: string; description1: string; description2: string; }; lang: string; } export default function AboutSection({ aboutData, lang }: AboutSectionProps) { return (
{aboutData.badge}
{/* Stats card */}
{aboutData.statsGuestCount} {aboutData.statsGuestLabel}
{aboutData.statsYearCount} {aboutData.statsYearLabel}
{/* IKO badge */}
{aboutData.badgeIkoTitle} {aboutData.badgeIkoLabel}
{aboutData.badge}

{aboutData.titleLine1}
{aboutData.titleLine2}
{aboutData.titleHighlight}

{aboutData.description1}

{aboutData.description2}

{lang === "en" ? "Read Our Story" : "Hikayemizi Okuyun"}
); }