// This is a file with a demo for your component// That's what users will see in the preview// Create new files in this directory to add more demosimport SplitSlideText from "@/components/ui/split-slide-text";// ONLY DEFAULT EXPORT WILL BE TREATED AS A DEMOexport default function DemoOne() { return ( <div className="w-full min-h-screen flex items-center justify-center p-4 bg-black"> <SplitSlideText text="EXTREME" /> </div> );}