"use client";
import FlowfieldGlyphsBackground from "@/components/ui/flowfield-glyphs-background";
const settings = {
backgroundColor: "#040010",
glyphColor: "rgba(0, 255, 255, 1)",
particleCount: 1500,
};
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<FlowfieldGlyphsBackground
backgroundColor={s.backgroundColor}
glyphColor={s.glyphColor}
particleCount={s.particleCount}
>
<></>
</FlowfieldGlyphsBackground>
</div>
);
}