import { Card, CardContent } from "@/components/ui/card" import { Mic, Lightbulb, Settings, FolderOpen } from "lucide-react" export default function Features() { const features = [ { icon: , title: "Live Transcription", description: "Records mic & system audio and uses OpenAI for real-time transcripts. No meeting bots required—transcribe directly from your computer's audio.", image: "/placeholder.svg?height=200&width=300", }, { icon: , title: "AI-Enhanced Notes", description: "Generates summaries and highlights from transcripts plus your manual notes, powered by OpenAI. Get intelligent insights from every meeting.", image: "/placeholder.svg?height=200&width=300", }, { icon: , title: "Customization & Privacy", description: "Edit system prompts, add personal blurbs, and store everything locally. Use your own API keys for complete control and privacy.", image: "/placeholder.svg?height=200&width=300", }, { icon: , title: "Easy Management", description: "Search, delete, copy notes/transcripts, and auto-update the app. Organize your meeting history with powerful management tools.", image: "/placeholder.svg?height=200&width=300", }, ] return (

Powerful Features, All Free and Open Source

Meetingnotes handles your meeting notes effortlessly, from live transcription to AI-generated summaries. Customize it to fit your workflow, and contribute to make it even better.

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

{feature.title}

{feature.description}

{`${feature.title}
))}

Coming Soon

Google Calendar integration, note templates, AI chat for questions, and more integrations (email, Slack).

Contribute on GitHub to help build these features!

) }