import { EncryptedText } from "@/components/ui/encrypted-text"export default function Page() {
return (
<EncryptedText
text="Welcome to the Matrix"
revealDelayMs={50}
flipDelayMs={40}
encryptedClassName="text-muted-foreground"
revealedClassName="text-foreground"
/>
)
}