Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/app/contact/page.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<main className="min-h-screen bg-black text-white p-8">
Expand Down
5 changes: 4 additions & 1 deletion src/app/privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<>
Expand Down
8 changes: 4 additions & 4 deletions src/components/VideoEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,10 @@ export default function VideoEditor() {
<FileUpload onFileSelect={handleFileSelect} currentFile={file} fileError={fileError} duration={duration} />

{!file && (
<div className="text-center text-[var(--muted)] py-6">
<p>Upload a video to get started</p>
<p className="text-sm">Supports MP4, MOV, WebM and more</p>
</div>
<div className="text-center text-[var(--muted)] py-6">
<p>Upload a video to get started</p>

</div>
)}

{file && (
Expand Down
Loading