import Image from 'next/image'; import Link from 'next/link'; export default function FleetPreview() { const featuredYachts = [ { name: 'M/S MEIRA', length: '55m', guests: '12', image: 'https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?q=80&w=2074&auto=format&fit=crop', href: '/fleet/meira' }, { name: 'M/Y PRINCESS MELDA', length: '45m', guests: '10', image: 'https://images.unsplash.com/photo-1621275471769-e6aa344546d5?q=80&w=2073&auto=format&fit=crop', href: '/fleet/princess-melda' }, { name: 'QUEEN OF SALMAKIS', length: '40m', guests: '18', image: 'https://images.unsplash.com/photo-1605281317010-fe5ffe798156?q=80&w=2044&auto=format&fit=crop', href: '/fleet/queen-of-salmakis' } ]; return (
Our Collection

Featured Fleet

View All Yachts
{featuredYachts.map((yacht) => (
{yacht.name}

{yacht.name}

{yacht.length} {yacht.guests} Guests
))}
); }