A surreal 3D old-web desktop. Floating Windows 98 / classic Mac OS panels in CSS-3D, a pixel cursor trail, dotted retro wallpaper. Drag windows around by their title bars. Nostalgic browser chaos rendered as a premium composed tribute.
import OldInternetPortal from '@crazygl/hero-old-internet-portal';
export default function Hero() {
return (
<OldInternetPortal
heading="Welcome to the World Wide Web."
windowStyle="win95"
window1Mode="image"
window1Image="/shots/dashboard.avif"
onWindow1Click="/portfolio"
/>
);
}windowStyle (win95, winxp, macos-classic).window{N}Mode (image/text/decoration/hidden), Label, Image/Text, Color, X/Y (% of hero), Z (px depth), RotX/RotY, Width/Height (fraction of min hero dimension), onWindow{N}Click (URL string or function callback).customCursor, showCursorTrail, cursorTrailLength, cursorTrailFadeSpeed, cursorTrailColor.wallpaperColor, dotColor, dotSize, dotSpacing, vignetteStrength, transparentBackground.parallaxStrength, perspectiveDistance, ambientFloat.npm install @crazygl/hero-old-internet-portalThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import OldInternetPortal from '@crazygl/hero-old-internet-portal';
export default function Landing() {
return (
<OldInternetPortal />
);
}The wrapper renders static HTML on the server and only initialises the canvas after hydration, so search engines see your copy.
// app/page.tsx — works in SSR-first frameworks (Next, Remix, Astro, etc.)
'use client';
import OldInternetPortal from '@crazygl/hero-old-internet-portal';
export default function Page() {
return (
<section>
<OldInternetPortal
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}