feat(videos): scaffold Remotion workspace with React 18 and Tailwind v3

This commit is contained in:
SnapOtter
2026-05-08 16:06:46 +08:00
parent 755bbd83bf
commit ddcead66fb
9 changed files with 3123 additions and 36 deletions
+6
View File
@@ -0,0 +1,6 @@
import "./style.css";
import { Composition } from "remotion";
export const RemotionRoot: React.FC = () => {
return <>{/* Compositions will be added as they are built */}</>;
};
+4
View File
@@ -0,0 +1,4 @@
import { registerRoot } from "remotion";
import { RemotionRoot } from "./Root";
registerRoot(RemotionRoot);
+3
View File
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;