"use client";
import ParallaxShader from "@/components/ui/parallax-shader";
const settings = { colorShift: 0 };
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<ParallaxShader colorShift={s.colorShift} />
</div>
);
}