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: "Real-time multiplayer", description: "Create a room, share the code, and race to the best score.", }, ]; const FeatureCards = () => { return (
Tiny rounds ยท big dopamine

Why lila

Built to be fast to start, satisfying to finish, and fun to repeat.

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

{title}

{description}

Instant feedback Type-safe API
))}
); }; export default FeatureCards;