Components
polar coordinates to create the repeating segments and implemented a high-quality color palette function, as described by Inigo Quilez, to produce the smooth, psychedelic color transitions.

import KaleidoscopicTunnel from "@/components/ui/kaleidoscopic-shader";
const settings = {
segments: 8,
speed: 2,
};
export default function DemoOne(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
{/* Kaleidoscopic tunnel shader */}
<KaleidoscopicTunnel segments={s.segments} speed={s.speed} />
{/* Overlay content */}
<div className="absolute inset-0 z-10 flex flex-col justify-center items-center text-center pointer-events-none px-4">
<h1 className="text-6xl font-black">Kaleidoscopic Tunnel</h1>
<p className="mt-4 text-lg text-muted-foreground max-w-xl">
A mesmerizing tunnel of mirrored shapes, animated in GLSL/WebGL2 and
fully customizable via props and theme CSS variables.
</p>
</div>
</div>
);
}