const features = [ { emoji: "📱", title: "Mobile-first", description: "Designed for your thumb. Play on the go, anytime.", }, { emoji: "🌍", title: "5 languages", description: "English, Italian, German, French, Spanish — with more on the way.", }, { emoji: "⚔️", title: "Multiplayer coming", description: "Challenge friends and see who has the bigger vocabulary.", }, ]; const FeatureCards = () => { return (

Why lila

{features.map(({ emoji, title, description }) => (
{emoji}

{title}

{description}

))}
); }; export default FeatureCards;