🎬 Add PortalTitleScene component for Title Card (Scene 2)

Implements the Title Card scene with:
- Typing animation for "EINUNDZWANZIG PORTAL" title
- Blinking cursor during typing effect
- Subtitle fade-in animation after title completes
- Audio integration with typing and ui-appear sounds
- Background glow and vignette effects

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
HolgerHatGarKeineNode
2026-01-24 13:16:05 +01:00
parent 04ccf917f0
commit 74e1bb8742
3 changed files with 380 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
import { AbsoluteFill, Sequence, useVideoConfig, Img, staticFile } from "remotion";
import { inconsolataFont } from "./fonts/inconsolata";
import { PortalIntroScene } from "./scenes/portal/PortalIntroScene";
import { PortalTitleScene } from "./scenes/portal/PortalTitleScene";
/**
* PortalPresentation - Main composition for the Einundzwanzig Portal presentation video
@@ -134,7 +135,7 @@ export const PortalPresentation: React.FC = () => {
durationInFrames={sceneFrames.portalTitle.duration}
premountFor={fps}
>
<PlaceholderScene name="Portal Title" sceneNumber={2} />
<PortalTitleScene />
</Sequence>
{/* Scene 3: Dashboard Overview (12s) */}