diff --git a/landing-page/app/components/features.tsx b/landing-page/app/components/features.tsx index 0b2c665..8519e80 100644 --- a/landing-page/app/components/features.tsx +++ b/landing-page/app/components/features.tsx @@ -7,29 +7,29 @@ export default function 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", + "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 and highlights from transcripts plus your manual notes, powered by OpenAI. Get intelligent insights from every meeting.", - image: "/placeholder.svg?height=200&width=300", + "Generates summaries from transcripts plus your manual notes, powered by OpenAI.", + image: "/notes.png", }, { 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", - }, + "Edit the system prompt and bring your own API key. Everything is stored locally.", + image: "/settings.png", + }, { 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", + "Search, delete, and copy your notes & transcripts, and auto-update the app.", + image: "/search.png", }, ]; @@ -64,7 +64,7 @@ export default function Features() { {`${feature.title} diff --git a/landing-page/public/notes.png b/landing-page/public/notes.png new file mode 100644 index 0000000..91b2a05 Binary files /dev/null and b/landing-page/public/notes.png differ diff --git a/landing-page/public/search.png b/landing-page/public/search.png new file mode 100644 index 0000000..f1861e6 Binary files /dev/null and b/landing-page/public/search.png differ diff --git a/landing-page/public/settings.png b/landing-page/public/settings.png new file mode 100644 index 0000000..4eeca31 Binary files /dev/null and b/landing-page/public/settings.png differ diff --git a/landing-page/public/transcript.png b/landing-page/public/transcript.png new file mode 100644 index 0000000..5e701b4 Binary files /dev/null and b/landing-page/public/transcript.png differ