feat(intro): polish loading transition

This commit is contained in:
Tom Boullay
2026-05-30 20:11:40 +02:00
parent 0fa7a82175
commit e6bfcbe960
9 changed files with 195 additions and 63 deletions
@@ -0,0 +1,14 @@
export function FadeToVideoOverlay(): React.JSX.Element {
return (
<div
aria-hidden="true"
style={{
position: "fixed",
inset: 0,
zIndex: 29,
background: "#000",
pointerEvents: "none",
}}
/>
);
}