"use client"; import React from 'react'; export default function GlitchText({ text, className = "" }: { text: string; className?: string }) { return ( {text} ); }