import FAQWithSpiral from "@/components/ui/faq-section";
const settings = {
points: 700,
dotRadius: 1.8,
color: "#ffffff",
pulseEffect: true,
sizeMax: 1.4,
background: "#000000",
};
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<FAQWithSpiral {...s} />
</div>
);
}