-
Notifications
You must be signed in to change notification settings - Fork 4.8k
feat: multiple UI improvements and new features #698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
acf689f
fix: UI improvements and multiple keyboard shortcuts support
nino-chavez 7670144
feat: add "open in new tab" icon next to project names (#644)
nino-chavez 6bad0d4
feat: add file size validation for media uploads (#653)
nino-chavez 147f473
feat: add Ctrl+X cut shortcut for timeline elements (#672)
nino-chavez de5293b
feat: add dedicated About page (#624)
nino-chavez 80b229c
fix: properly dispose WebCodecs resources in video cache (#663)
nino-chavez 905238d
fix: improve audio mixing quality and prevent clipping (#677)
nino-chavez 71bdafa
fix: make track visibility toggle button clickable (#658)
nino-chavez edd2138
fix: show user-friendly error for unsupported video codecs (#637)
nino-chavez 5854906
fix: dispose Input objects to prevent memory leaks (#656)
nino-chavez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 ( | ||
| <BasePage | ||
| title="About OpenCut" | ||
| description="A free, open-source video editor that respects your privacy and gets the job done." | ||
| > | ||
| <section className="flex flex-col gap-4"> | ||
| <h2 className="text-2xl font-semibold">Our Mission</h2> | ||
| <p> | ||
| 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. | ||
| </p> | ||
| <p> | ||
| 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. | ||
| </p> | ||
| </section> | ||
|
|
||
| <section className="flex flex-col gap-4"> | ||
| <h2 className="text-2xl font-semibold">Key Features</h2> | ||
| <ul className="list-disc space-y-2 pl-6"> | ||
| <li> | ||
| <strong>Privacy-first:</strong> Basic editing happens entirely in | ||
| your browser - your files never leave your device | ||
| </li> | ||
| <li> | ||
| <strong>Multi-track timeline:</strong> Arrange video, audio, and | ||
| images across multiple tracks with precision | ||
| </li> | ||
| <li> | ||
| <strong>Real-time preview:</strong> See your edits instantly without | ||
| waiting for renders | ||
| </li> | ||
| <li> | ||
| <strong>Cross-platform:</strong> Works on any device with a modern | ||
| web browser | ||
| </li> | ||
| <li> | ||
| <strong>Open source:</strong> Fully transparent code you can audit, | ||
| modify, or self-host | ||
| </li> | ||
| <li> | ||
| <strong>Free forever:</strong> No subscriptions, no paywalls, no | ||
| hidden costs | ||
| </li> | ||
| </ul> | ||
| </section> | ||
|
|
||
| <section className="flex flex-col gap-4"> | ||
| <h2 className="text-2xl font-semibold">Open Source</h2> | ||
| <p> | ||
| 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. | ||
| </p> | ||
| <p> | ||
| 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. | ||
| </p> | ||
| <div className="flex gap-4 pt-2"> | ||
| <Button variant="outline" asChild> | ||
| <Link href={SOCIAL_LINKS.github} target="_blank" rel="noopener"> | ||
| View on GitHub | ||
| <ArrowRight className="ml-1 size-4" /> | ||
| </Link> | ||
| </Button> | ||
| </div> | ||
| </section> | ||
|
|
||
| <section className="flex flex-col gap-4"> | ||
| <h2 className="text-2xl font-semibold">Community</h2> | ||
| <p> | ||
| 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. | ||
| </p> | ||
| <div className="flex flex-wrap gap-4 pt-2"> | ||
| <Button variant="outline" asChild> | ||
| <Link href={SOCIAL_LINKS.discord} target="_blank" rel="noopener"> | ||
| Join Discord | ||
| </Link> | ||
| </Button> | ||
| <Button variant="outline" asChild> | ||
| <Link href={SOCIAL_LINKS.x} target="_blank" rel="noopener"> | ||
| Follow on X | ||
| </Link> | ||
| </Button> | ||
| <Button variant="outline" asChild> | ||
| <Link href="/contributors">View Contributors</Link> | ||
| </Button> | ||
| </div> | ||
| </section> | ||
|
|
||
| <section className="flex flex-col gap-4"> | ||
| <h2 className="text-2xl font-semibold">Get Started</h2> | ||
| <p> | ||
| Ready to start editing? OpenCut runs directly in your browser - no | ||
| downloads or installations required. | ||
| </p> | ||
| <div className="pt-2"> | ||
| <Button variant="foreground" asChild> | ||
| <Link href="/projects"> | ||
| Start Editing | ||
| <ArrowRight className="ml-1 size-4" /> | ||
| </Link> | ||
| </Button> | ||
| </div> | ||
| </section> | ||
| </BasePage> | ||
| ); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix nested interactive elements and harden the “open in new tab” control.
The icon button sits inside a Link (both grid and list views), which is invalid HTML and problematic for accessibility. Also,
window.openwithoutnoopenerenables tabnabbing, and the icon-only control needs an accessible label/title. A safer pattern is to move the icon link outside the main Link and use a real anchor withtarget="_blank"+rel, plusaria-labeland an icon title.🔧 Proposed approach (apply to both grid + list)
For grid cards, place the icon link as a sibling overlay (similar to the checkbox) so it’s not nested inside the main Link.
As per coding guidelines: Don't use
target="_blank"withoutrel="noopener"; Always include atitleelement for icons unless there's text beside the icon; Make sure anchors have content that's accessible to screen readers.Also applies to: 640-656
🤖 Prompt for AI Agents