diff --git a/apps/web/src/app/about/page.tsx b/apps/web/src/app/about/page.tsx new file mode 100644 index 00000000..48ec4860 --- /dev/null +++ b/apps/web/src/app/about/page.tsx @@ -0,0 +1,133 @@ +import type { Metadata } from "next"; +import Link from "next/link"; +import { BasePage } from "@/app/base-page"; +import { Button } from "@/components/ui/button"; +import { SOCIAL_LINKS } from "@/constants/site-constants"; +import { ArrowRight } from "lucide-react"; + +export const metadata: Metadata = { + title: "About - OpenCut", + description: + "OpenCut is a free, open-source video editor built for privacy and simplicity. Edit videos directly in your browser without uploading to servers.", + openGraph: { + title: "About - OpenCut", + description: + "OpenCut is a free, open-source video editor built for privacy and simplicity. Edit videos directly in your browser without uploading to servers.", + type: "website", + }, +}; + +export default function AboutPage() { + return ( + +
+

Our Mission

+

+ OpenCut was created to provide a powerful video editing experience + that doesn't compromise on privacy. We believe that editing your + videos should be simple, fast, and free from data collection. +

+

+ Your videos stay on your device. No uploads to external servers for + basic editing. No tracking of your content. Just a clean, efficient + editor that works anywhere. +

+
+ +
+

Key Features

+ +
+ +
+

Open Source

+

+ OpenCut is completely open source under the MIT license. This means + you can view, modify, and distribute the code freely. We believe in + transparency and community-driven development. +

+

+ Our source code is available on GitHub, where you can report issues, + suggest features, or contribute code. Every contribution helps make + OpenCut better for everyone. +

+
+ +
+
+ +
+

Community

+

+ Join our growing community of creators, developers, and video editing + enthusiasts. Whether you need help, want to share your creations, or + are interested in contributing, we'd love to have you. +

+
+ + + +
+
+ +
+

Get Started

+

+ Ready to start editing? OpenCut runs directly in your browser - no + downloads or installations required. +

+
+ +
+
+
+ ); +} diff --git a/apps/web/src/components/footer.tsx b/apps/web/src/components/footer.tsx index 7c78fc57..31a0a9c2 100644 --- a/apps/web/src/components/footer.tsx +++ b/apps/web/src/components/footer.tsx @@ -25,7 +25,7 @@ const links: CategoryLinks = { { label: "Contributors", href: "/contributors" }, { label: "Sponsors", href: "/sponsors" }, { label: "Branding", href: "/branding" }, - { label: "About", href: `${SOCIAL_LINKS.github}/blob/main/README.md` }, + { label: "About", href: "/about" }, ], };