📱 Add mobile scene adaptations for PortalPresentationMobile

Mobile-optimized versions of all 9 scenes with portrait layout (1080x1920):
- PortalIntroSceneMobile: Smaller logo (280px), text-5xl title
- PortalTitleSceneMobile: Title split into two lines, text-5xl
- DashboardOverviewSceneMobile: Vertical card stacking, no sidebar
- MeetupShowcaseSceneMobile: Vertical layout, 360px featured card
- CountryStatsSceneMobile: Single column, 280px bars, compact sparklines
- TopMeetupsSceneMobile: Narrower rows, 70px sparklines
- ActivityFeedSceneMobile: 400px activity cards
- CallToActionSceneMobile: max-w-md container, 100px logo
- PortalOutroSceneMobile: 450px horizontal logo

Includes 92 tests covering mobile-specific layout adaptations.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
HolgerHatGarKeineNode
2026-01-24 14:09:16 +01:00
parent 364fb201b8
commit e9e8038f29
20 changed files with 3995 additions and 38 deletions

View File

@@ -0,0 +1,189 @@
import {
AbsoluteFill,
useCurrentFrame,
useVideoConfig,
interpolate,
spring,
Img,
staticFile,
Sequence,
} from "remotion";
import { Audio } from "@remotion/media";
import { AnimatedLogo } from "../../../components/AnimatedLogo";
import { BitcoinEffect } from "../../../components/BitcoinEffect";
// Spring configurations from PRD
const SMOOTH = { damping: 200 };
/**
* PortalIntroSceneMobile - Scene 1: Logo Reveal for Mobile (6 seconds / 180 frames @ 30fps)
*
* Mobile layout adaptations:
* - Smaller logo (280px vs 350px)
* - Adjusted text sizes for portrait orientation
* - Vertical centering optimized for 1080x1920
*/
export const PortalIntroSceneMobile: React.FC = () => {
const frame = useCurrentFrame();
const { fps } = useVideoConfig();
// Background zoom animation - starts zoomed in, zooms out
const backgroundZoom = interpolate(frame, [0, 3 * fps], [1.2, 1.0], {
extrapolateRight: "clamp",
});
// Logo entrance spring animation - delayed slightly for dramatic effect
const logoEntranceDelay = Math.floor(0.5 * fps);
const logoSpring = spring({
frame: frame - logoEntranceDelay,
fps,
config: { damping: 15, stiffness: 80 },
});
const logoScale = interpolate(logoSpring, [0, 1], [0, 1]);
const logoOpacity = interpolate(logoSpring, [0, 0.5], [0, 1], {
extrapolateRight: "clamp",
});
// Outer glow pulse effect
const glowIntensity = interpolate(
Math.sin((frame - logoEntranceDelay) * 0.08),
[-1, 1],
[0.4, 0.8]
);
const glowScale = interpolate(
Math.sin((frame - logoEntranceDelay) * 0.06),
[-1, 1],
[1.0, 1.15]
);
// Title text entrance - appears after logo
const titleDelay = Math.floor(2 * fps);
const titleSpring = spring({
frame: frame - titleDelay,
fps,
config: SMOOTH,
});
const titleOpacity = interpolate(titleSpring, [0, 1], [0, 1]);
const titleY = interpolate(titleSpring, [0, 1], [30, 0]);
// Subtitle entrance
const subtitleDelay = Math.floor(2.8 * fps);
const subtitleSpring = spring({
frame: frame - subtitleDelay,
fps,
config: SMOOTH,
});
const subtitleOpacity = interpolate(subtitleSpring, [0, 1], [0, 1]);
// Center position for logo (adjusts as text appears)
const contentY = interpolate(frame, [titleDelay, titleDelay + fps], [0, -40], {
extrapolateLeft: "clamp",
extrapolateRight: "clamp",
});
return (
<AbsoluteFill className="bg-zinc-900 overflow-hidden">
{/* Audio: logo-whoosh at start */}
<Sequence durationInFrames={Math.floor(2 * fps)}>
<Audio src={staticFile("sfx/logo-whoosh.mp3")} volume={0.7} />
</Sequence>
{/* Audio: logo-reveal when logo appears */}
<Sequence from={logoEntranceDelay} durationInFrames={Math.floor(2 * fps)}>
<Audio src={staticFile("sfx/logo-reveal.mp3")} volume={0.6} />
</Sequence>
{/* Wallpaper Background with zoom effect */}
<div
className="absolute inset-0"
style={{
transform: `scale(${backgroundZoom})`,
transformOrigin: "center center",
}}
>
<Img
src={staticFile("einundzwanzig-wallpaper.png")}
className="absolute inset-0 w-full h-full object-cover"
style={{ opacity: 0.25 }}
/>
</div>
{/* Dark gradient overlay for depth */}
<div
className="absolute inset-0"
style={{
background:
"radial-gradient(circle at center, transparent 0%, rgba(24, 24, 27, 0.7) 70%, rgba(24, 24, 27, 0.95) 100%)",
}}
/>
{/* Bitcoin particle effect in background */}
<BitcoinEffect />
{/* Content container with vertical centering */}
<div
className="absolute inset-0 flex flex-col items-center justify-center"
style={{
transform: `translateY(${contentY}px)`,
}}
>
{/* Outer glow effect behind logo */}
<div
className="absolute"
style={{
width: 400,
height: 400,
background:
"radial-gradient(circle, rgba(247, 147, 26, 0.4) 0%, transparent 60%)",
opacity: glowIntensity * logoSpring,
transform: `scale(${glowScale * logoScale})`,
filter: "blur(40px)",
}}
/>
{/* AnimatedLogo with entrance animation - smaller for mobile */}
<div
style={{
opacity: logoOpacity,
transform: `scale(${logoScale})`,
}}
>
<AnimatedLogo size={280} delay={logoEntranceDelay} />
</div>
{/* Title text - smaller for mobile */}
<div
className="mt-8 text-center px-8"
style={{
opacity: titleOpacity,
transform: `translateY(${titleY}px)`,
}}
>
<h1 className="text-5xl font-bold text-white tracking-wider">
EINUNDZWANZIG
</h1>
</div>
{/* Subtitle */}
<div
className="mt-4 text-center"
style={{
opacity: subtitleOpacity,
}}
>
<p className="text-xl text-orange-500 font-medium tracking-wide">
Das Portal
</p>
</div>
</div>
{/* Vignette overlay */}
<div
className="absolute inset-0 pointer-events-none"
style={{
boxShadow: "inset 0 0 200px 50px rgba(0, 0, 0, 0.7)",
}}
/>
</AbsoluteFill>
);
};