From f5a08b012708137297b1098a7ed3d165c57609ae Mon Sep 17 00:00:00 2001 From: shivani11jadhav Date: Wed, 20 May 2026 09:52:09 +0530 Subject: [PATCH 1/2] fix: remove duplicate file format text in upload area --- src/components/VideoEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/VideoEditor.tsx b/src/components/VideoEditor.tsx index 3ffb6a67..5328794f 100644 --- a/src/components/VideoEditor.tsx +++ b/src/components/VideoEditor.tsx @@ -124,7 +124,7 @@ export default function VideoEditor() { {!file && (

Upload a video to get started

-

Supports MP4, MOV, WebM and more

+
)} From ee48f9c710c809d6b631e90633b066f7d86f2893 Mon Sep 17 00:00:00 2001 From: shivani11jadhav Date: Wed, 20 May 2026 10:05:01 +0530 Subject: [PATCH 2/2] fix: add unique page titles for /privacy and /contact pages --- src/app/contact/page.tsx | 5 ++++- src/app/privacy/page.tsx | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index bd52c171..9e5413bb 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,5 +1,8 @@ import Link from "next/link"; - +export const metadata = { + title: "Contact | Reframe", + description: "Get in touch with the Reframe team.", +}; export default function ContactPage() { return (
diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx index bf664619..58c81aff 100644 --- a/src/app/privacy/page.tsx +++ b/src/app/privacy/page.tsx @@ -1,5 +1,8 @@ import Link from "next/link"; - +export const metadata = { + title: "Privacy Policy | Reframe", + description: "Privacy policy for Reframe — your videos never leave your device.", +}; export default function PrivacyPage() { return ( <>