diff --git a/landing-page/app/components/community.tsx b/landing-page/app/components/community.tsx index 45965f5..1ad0e52 100644 --- a/landing-page/app/components/community.tsx +++ b/landing-page/app/components/community.tsx @@ -1,20 +1,22 @@ -import { Button } from "@/components/ui/button" -import { Card, CardContent } from "@/components/ui/card" -import { Star, GitFork, Users, Heart } from "lucide-react" +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Star, GitFork, Users, Heart } from "lucide-react"; export default function Community() { return (
-
-

Join the Open-Source Community

+
+

+ Join the Open-Source Community +

- Meetingnotes is built by the community for the community. Star us on GitHub, contribute features, or report - issues. + Meetingnotes is built by the community for the community. Star us on + GitHub, contribute features, or report issues.

-
+ {/*
@@ -38,10 +40,30 @@ export default function Community() {

Contributors

+
*/} + +
+ +

Help Build the Future

+

+ Add integrations, templates, or custom models! Every contribution + makes Meetingnotes better for everyone. +

+ {/*
+ "As an open-source project, Meetingnotes is transparent and + customizable—perfect for privacy-focused users." +
+ + – Developer & Contributor + */}
-
-
- -
- -

Help Build the Future

-

- Add integrations, templates, or custom models! Every contribution makes Meetingnotes better for everyone. -

-
- "As an open-source project, Meetingnotes is transparent and customizable—perfect for privacy-focused users." -
- – Developer & Contributor -
- ) + ); } diff --git a/landing-page/app/components/features.tsx b/landing-page/app/components/features.tsx index b3b2719..0b2c665 100644 --- a/landing-page/app/components/features.tsx +++ b/landing-page/app/components/features.tsx @@ -1,5 +1,5 @@ -import { Card, CardContent } from "@/components/ui/card" -import { Mic, Lightbulb, Settings, FolderOpen } from "lucide-react" +import { Card, CardContent } from "@/components/ui/card"; +import { Mic, Lightbulb, Settings, FolderOpen } from "lucide-react"; export default function Features() { const features = [ @@ -31,34 +31,41 @@ export default function Features() { "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} +
+
+
{feature.icon}
+

+ {feature.title} +

+

+ {feature.description} +

+ {`${feature.title}
@@ -68,11 +75,14 @@ export default function Features() {

Coming Soon

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

+

+ Contribute on GitHub to help build these features!

-

Contribute on GitHub to help build these features!

- ) + ); } diff --git a/landing-page/app/components/header.tsx b/landing-page/app/components/header.tsx index 32660ce..b46e58c 100644 --- a/landing-page/app/components/header.tsx +++ b/landing-page/app/components/header.tsx @@ -15,13 +15,13 @@ export default function Header() {