Components
A stunning, interactive hero section featuring a real-time volumetric aurora shader. Built with React and WebGL for a captivating user experience.

import AuroraHero from "@/components/ui/digital-aurora";
const settings = {
title: "Digital Aurora",
description:
"An interactive WebGL aurora that flows and responds to your cursor, wrapped in a clean, minimal hero.",
badgeLabel: "New",
badgeText: "Interactive shader background",
};
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<AuroraHero
title={s.title}
description={s.description}
badgeLabel={s.badgeLabel}
badgeText={s.badgeText}
ctaButtons={[
{ text: "Get started", href: "#", primary: true },
{ text: "Learn more", href: "#" },
]}
microDetails={["No dependencies", "WebGL powered", "Cursor reactive"]}
/>
</div>
);
}