"use client";
import { DotmHex10 } from "@/components/ui/dotm-hex-10";
const settings = {
dotSize: 7,
speed: 1.55,
bloom: true,
halo: 1,
boxSize: 280,
};
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="flex h-screen w-screen items-center justify-center bg-background text-foreground">
<DotmHex10
color="currentColor"
dotSize={s.dotSize}
speed={s.speed}
bloom={s.bloom}
halo={s.halo}
boxSize={s.boxSize}
/>
</div>
);
}