'use client'; import { motion } from 'framer-motion'; import { Villa } from '@/data/villas'; import { Link } from '@/i18n/routing'; import { Users, Bed, Droplets, MapPin } from 'lucide-react'; import Image from 'next/image'; interface VillaCardProps { villa: Villa; index: number; } export default function VillaCard({ villa, index }: VillaCardProps) { return (
{villa.name}
Portfolio
{villa.location}

{villa.name}

{villa.capacity} Kişi
{villa.bedrooms} Oda
Havuz
Gecelik €{villa.priceLow} - €{villa.priceHigh}
Detayları İncele
); }