import { ILLUSTRATIONS, illustrationSrc } from './onboarding-illustrations' // Ambient scene behind the onboarding flow, built from the marketing site's // halftone illustration set so signup -> app feels like one product: the // Stockholm skyline dissolving into the bottom edge. Purely decorative // (aria-hidden, pointer-events-none); the content column sits above it on // z-10. export default function OnboardingBackdrop() { const skyline = ILLUSTRATIONS['about-stockholm'] return (
{/* Stadshuset skyline anchored to the bottom: translated down so its water reflection falls below the fold and only the silhouette hugs the edge, masked so it dissolves upward into the page. min-width keeps the towers readable on narrow viewports (crops at the sides). */}
{/* eslint-disable-next-line @next/next/no-img-element */}
) }