feat: add media converter app and fix compilation errors

This commit is contained in:
2026-02-25 10:06:50 +01:00
parent 1da6168f37
commit fbc8cdeebe
53 changed files with 3925 additions and 490 deletions

17
app/(app)/media/page.tsx Normal file
View File

@@ -0,0 +1,17 @@
import { FileConverter } from '@/components/media/FileConverter';
export default function MediaPage() {
return (
<div className="min-h-screen py-12">
<div className="max-w-7xl mx-auto px-8 space-y-8">
<div>
<h1 className="text-4xl font-bold mb-2">Media Converter</h1>
<p className="text-muted-foreground">
Professional browser-based media conversion for video, audio, and images
</p>
</div>
<FileConverter />
</div>
</div>
);
}