'use client' import { motion } from "framer-motion" import Image from "next/image" import { Check, Hotel, Star, Globe } from 'lucide-react' export default function AboutClient({ lang, dict }: { lang: string, dict: any }) { const whyUs = [ { title: dict.about.why['1'].t, desc: dict.about.why['1'].d }, { title: dict.about.why['2'].t, desc: dict.about.why['2'].d }, { title: dict.about.why['3'].t, desc: dict.about.why['3'].d }, { title: dict.about.why['4'].t, desc: dict.about.why['4'].d } ] const stats = [ { icon: , value: '8+', label: 'Premium Room' }, { icon: , value: '4.8', label: 'Guest Rating' }, { icon: , value: '10+', label: 'Countries' } ] return (
{/* HERO SECTION */}
{dict.about.title} {dict.about.subtitle}
{/* STORY & WHY US SECTION */}
{/* Left: Story */}

{dict.about.story.title}

{dict.about.story.p1}

{dict.about.story.p2}

{/* Right: Why Us Card */}

{dict.about.why.title}

{whyUs.map((item, idx) => (

{item.title}

{item.desc}

))}
{/* STATS SECTION */}
{stats.map((stat, idx) => (
{stat.icon}

{stat.value}

{stat.label}

))}
{/* VISION SECTION */}
{dict.about.vision.title} {dict.about.vision.text}
) }