// This is file with demos of your component// Each export is one usecase for your componentimport DanceTextAnimation from "@/components/ui/dance-text-animation";const DemoOne = () => { return ( <div className="items-center w-full h-screen"> <DanceTextAnimation /> </div> );};export { DemoOne };