// 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 HoverTerminal from "@/components/ui/hover-terminal";// ONLY DEFAULT EXPORT WILL BE TREATED AS A DEMOexport default function DemoOne() { return ( <main className="grid min-h-screen place-items-center bg-neutral-50 dark:bg-[#0A0A0A] transition-colors duration-300"> <HoverTerminal /> </main> );}