export default function GeelyCebuWebsite() { const vehicles = [ { name: 'Coolray', desc: 'Sporty crossover with turbocharged performance and smart technology.', image: 'https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1200&auto=format&fit=crop' }, { name: 'GX3 Pro 2026', desc: 'Compact SUV built for everyday confidence and city driving.', image: 'https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1200&auto=format&fit=crop' }, { name: 'Emgrand', desc: 'Premium sedan offering elegance, comfort, and modern safety.', image: 'https://images.unsplash.com/photo-1549399542-7e3f8b79c341?q=80&w=1200&auto=format&fit=crop' }, { name: 'Okavango Elite', desc: 'Spacious 7-seater SUV designed for family adventures.', image: 'https://images.unsplash.com/photo-1511919884226-fd3cad34687c?q=80&w=1200&auto=format&fit=crop' } ]; const branches = [ { name: 'Geely Cebu - Gorordo', address: 'Gorordo Ave., Cebu City' }, { name: 'Geely Cebu - Mandaue', address: 'A.C. Cortes Ave., Mandaue City' }, { name: 'Geely Cebu - Talisay', address: 'Talisay City, Cebu' } ]; const promos = [ '8K Down Payment', '150K Cash Discount', 'Fast & Easy Approval', 'Flexible Financing Options' ]; return (

GEELY CEBU

Drive the Future

Official Geely Dealer in Cebu

DRIVE THE FUTURE

Discover Geely’s latest SUVs and sedans with unbeatable promos, modern technology, and premium driving experience.

Vehicle Lineup

Featured Models

{vehicles.map((vehicle) => (
{vehicle.name}

{vehicle.name}

{vehicle.desc}

))}

Latest Deals

Hot Promos

{promos.map((promo) => (

PROMO

{promo}

))}

Visit Us

Showroom Locations

{branches.map((branch) => (
📍

{branch.name}

{branch.address}

))}

Contact Us

Book Your Test Drive

Get in Touch

Phone: 09274313777

Facebook: Geely Cebu

Email: inquiry@geelycebu.com

); }