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.", image: "/transcript.png", }, { icon: , title: "AI-Enhanced Notes", description: "Generates summaries from transcripts plus your manual notes, powered by OpenAI.", image: "/notes.png", }, { icon: , title: "Customization & Privacy", description: "Edit the system prompt and bring your own API key. Everything is stored locally.", image: "/settings.png", }, { icon: , title: "Easy Management", description: "Search, delete, and copy your notes & transcripts, and auto-update the app.", image: "/search.png", }, ]; 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, AI chat for questions, and more integrations (email, Slack).

Contribute on GitHub to help build these features!

); }