[dyad] Create video editor UI - wrote 2 file(s), deleted 1 file(s)

This commit is contained in:
[dyad]
2026-01-30 08:08:01 +01:00
parent f3c1e3e041
commit ffd4b89308
3 changed files with 95 additions and 20 deletions

View File

@@ -1,12 +1,11 @@
import { MadeWithDyad } from "@/components/made-with-dyad";
import { VideoEditor } from "@/components/video-editor";
export default function Home() {
return (
<div className="grid grid-rows-[1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 sm:p-20 font-[family-name:var(--font-geist-sans)]">
<main className="flex flex-col gap-8 row-start-1 items-center sm:items-start">
<h1>Blank page</h1>
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-50 dark:bg-gray-900 p-4 sm:p-6 md:p-8 font-[family-name:var(--font-geist-sans)]">
<main className="w-full max-w-4xl">
<VideoEditor />
</main>
<MadeWithDyad />
</div>
);
}
}