'use client' import { motion } from "framer-motion" import Image from "next/image" import Link from "next/link" import { Calendar, ArrowRight } from 'lucide-react' export default function NewsClient({ lang, dict }: { lang: string, dict: any }) { const newsItems = [ { id: 'hidden-gems-oren', title: dict.news_page.list.n1.title, excerpt: dict.news_page.list.n1.excerpt, image: 'https://images.unsplash.com/photo-1544124499-58912cbddaad?q=80&w=2127&auto=format&fit=crop', date: 'April 15, 2026', author: dict.news_page.list.n1.author }, { id: 'summer-cocktails-retreat', title: dict.news_page.list.n2.title, excerpt: dict.news_page.list.n2.excerpt, image: 'https://images.unsplash.com/photo-1519046904884-53103b34b206?q=80&w=2073&auto=format&fit=crop', date: 'April 10, 2026', author: dict.news_page.list.n2.author }, { id: 'luxury-interior-trends', title: dict.news_page.list.n3.title, excerpt: dict.news_page.list.n3.excerpt, image: 'https://images.unsplash.com/photo-1618773928121-c32242e63f39?q=80&w=1964&auto=format&fit=crop', date: 'April 05, 2026', author: dict.news_page.list.n3.author } ] return (
{/* HEADER SECTION */}
{dict.news_page.title} {dict.news_page.subtitle}
{/* ARTICLES GRID SECTION */}
{newsItems.map((article, idx) => (
{/* Image Card */}
{article.title}
{/* Metadata and Title */}
{article.date}

{article.title}

{article.excerpt}

{dict.news_page.read}
))}
) }