import React from "react";
import LiquidCrystalBackground from "@/components/ui/liquid-neon-shader";
const settings = {
speed: 0.6,
radii: [0.25, 0.18, 0.3],
smoothK: [0.2, 0.3],
};
export default function DemoOne(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
{/* Liquid-Crystal background with default settings */}
<LiquidCrystalBackground
speed={s.speed}
radii={s.radii}
smoothK={s.smoothK}
/>
</div>
);
}