import HeroGeometric from "@/components/ui/hero-geometric";
const settings = {
speed: 1,
color1: "#3B82F6",
color2: "#F0F9FF",
};
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<HeroGeometric
title1="Design in motion"
title2="Build with clarity"
description="A minimal geometric hero backed by an animated gradient shader."
speed={s.speed}
color1={s.color1}
color2={s.color2}
/>
</div>
);
}