chore(film): scaffold remotion product-film project

This commit is contained in:
Satyam Rastogi
2026-05-30 00:57:12 +05:30
parent a15a77eb77
commit 0131424554
8 changed files with 4081 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { AbsoluteFill } from "remotion";
export const Film: React.FC = () => {
return (
<AbsoluteFill style={{ backgroundColor: "#09090b", alignItems: "center", justifyContent: "center" }}>
<h1 style={{ color: "white", fontFamily: "sans-serif" }}>LynkedUp Pro Film</h1>
</AbsoluteFill>
);
};
+15
View File
@@ -0,0 +1,15 @@
import { Composition } from "remotion";
import { Film } from "./Film";
export const Root: React.FC = () => {
return (
<Composition
id="LynkedUpProFilm"
component={Film}
durationInFrames={150}
fps={30}
width={1920}
height={1080}
/>
);
};
+4
View File
@@ -0,0 +1,4 @@
import { registerRoot } from "remotion";
import { Root } from "./Root";
registerRoot(Root);