import { cn } from "@/lib/utils" import { motion } from "framer-motion" export default function TextBlurTransition(props: { children: string; className?: string }) { const words = props.children.split(" ") return ( {words.map((word, index) => { return ( {word} ) })} ) }