// 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 demos
import { LetterMorph } from "@/components/ui/letter-morph";
// ONLY DEFAULT EXPORT WILL BE TREATED AS A DEMO
export default function DemoOne() {
return <LetterMorph
words={["BUILD", "CREATE", "SHIP"]}
textClassName="text-4xl sm:text-5xl"
/>
}