'use client'; import type { FeaturesProps } from '@/types/component-props'; export default function Features({}: FeaturesProps) { const features = [ { icon: '🎙️', title: 'Voice Recording', description: 'Record voice notes directly in your browser with one click', }, { icon: '📝', title: 'AI Transcription', description: 'Automatic transcription powered by OpenAI Whisper', }, { icon: '✨', title: 'Smart Summaries', description: 'Get AI-generated summaries of your recordings using Gemini', }, { icon: '🚀', title: 'Auto App Generation', description: 'Say "create an app" and watch AI build it from your ideas', }, ]; return (

Everything You Need

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
); }