From b385f3b7e681c8449df13b890d6332090afe4204 Mon Sep 17 00:00:00 2001 From: Nisha Date: Sun, 17 May 2026 00:23:51 +0530 Subject: [PATCH 1/2] fix: add contact page to prevent footer 404 --- src/app/contact/page.tsx | 47 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 00000000..bd52c171 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,47 @@ +import Link from "next/link"; + +export default function ContactPage() { + return ( +
+
+ + ← Back to Reframe + +
+

Contact

+ +

+ Have a question, feedback, or found a bug? +

+ +
+
+ + GitHub Issues + +

For bug reports and feature requests.

+
+ +
+ + GitHub Discussions + +

For questions, ideas, and general help.

+
+
+
+ ); +} From 642a60ef80ed4413a6ef316500c070545ded16eb Mon Sep 17 00:00:00 2001 From: Nisha Date: Tue, 19 May 2026 00:05:49 +0530 Subject: [PATCH 2/2] Improve Reset All Settings button UI --- src/components/ResetSettingsButton.tsx | 34 ++++++++++++++++++++++++++ src/components/VideoEditor.tsx | 9 ++----- 2 files changed, 36 insertions(+), 7 deletions(-) create mode 100644 src/components/ResetSettingsButton.tsx diff --git a/src/components/ResetSettingsButton.tsx b/src/components/ResetSettingsButton.tsx new file mode 100644 index 00000000..fe314257 --- /dev/null +++ b/src/components/ResetSettingsButton.tsx @@ -0,0 +1,34 @@ +import { RotateCcw } from "lucide-react"; +import { cn } from "@/lib/utils"; + +interface ResetSettingsButtonProps extends React.ButtonHTMLAttributes { + onReset: () => void; +} + +export default function ResetSettingsButton({ onReset, className, ...props }: ResetSettingsButtonProps) { + return ( + + ); +} diff --git a/src/components/VideoEditor.tsx b/src/components/VideoEditor.tsx index 189d8701..ff6eec08 100644 --- a/src/components/VideoEditor.tsx +++ b/src/components/VideoEditor.tsx @@ -12,6 +12,7 @@ import FormatSelector from "./FormatSelector"; import ExportSettings from "./ExportSettings"; import ExportOverlay from "./ExportOverlay"; import DownloadResult from "./DownloadResult"; +import ResetSettingsButton from "./ResetSettingsButton"; import { cn } from "@/lib/utils"; import { Layers, Crop, Scissors, RotateCw, Volume2, @@ -277,13 +278,7 @@ export default function VideoEditor() {
- +