// 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 { LogoCloud } from "@/components/ui/logo-cloud";// ONLY DEFAULT EXPORT WILL BE TREATED AS A DEMOexport default function DemoOne() { return ( <div className="flex h-screen w-screen items-center justify-center bg-slate-50"> <LogoCloud /> </div> );}