Components
An animated full-bleed WebGL shader background with glowing lightning, waves and smoke effects, configurable via color, speed, detail, distortion and brightness props.
Loading preview...
"use client";
import ElectricMist from "@/components/ui/electric-mist";
export default function Default() {
return (
<div className="relative flex h-[500px] w-full items-center justify-center overflow-hidden rounded-xl bg-[#05050f]">
<ElectricMist />
<h1 className="relative z-10 select-none text-center font-mono text-4xl font-bold uppercase tracking-widest text-white/90 sm:text-6xl">
Electric Mist
</h1>
</div>
);
}