"use client"; import { useTranslations } from 'next-intl'; import { motion } from 'framer-motion'; import { Waves, Leaf, Music } from 'lucide-react'; import Image from 'next/image'; const features = [ { icon: Waves, titleKey: 'card1_title', descKey: 'card1_desc', color: 'text-aqua', bg: 'bg-aqua/10' }, { icon: Leaf, titleKey: 'card2_title', descKey: 'card2_desc', color: 'text-amber', bg: 'bg-amber/10' }, { icon: Music, titleKey: 'card3_title', descKey: 'card3_desc', color: 'text-coral', bg: 'bg-coral/10' }, ]; export default function About() { const t = useTranslations('About'); return (
{/* Left content */}
— Beach & More

{t('title')}

{t('description')}

{features.map(({ icon: Icon, titleKey, descKey, color, bg }, i) => (

{t(titleKey)}

{t(descKey)}

))}
{/* Right image */} {/* Glow ring */}
Kozmos atmosferi
); }