'use client' import { motion } from 'framer-motion' import Link from 'next/link' import Image from 'next/image' import { ArrowRight, Star } from 'lucide-react' import { ShimmerButton } from '@/components/magicui/shimmer-button' import { cn } from '@/components/common/Navbar' const EASE = [0.22, 1, 0.36, 1] as const const fadeInUp = { hidden: { opacity: 0, y: 40, filter: 'blur(8px)' }, show: { opacity: 1, y: 0, filter: 'blur(0px)', transition: { duration: 0.8, ease: EASE } } } export function HomePageClient({ dict, tours, categories, reviews }: { dict: any, tours: any[], categories: any[], reviews: any[] }) { return (
"{review.comment}"