'use client'; import { AnimatePresence, motion, Variants } from 'framer-motion'; import { cn } from '../../lib/utils'; interface SlightFlipProps { word: string; duration?: number; delayMultiple?: number; framerProps?: Variants; className?: string; } export default function SlightFlip({ word, duration = 0.5, delayMultiple = 0.08, framerProps = { hidden: { rotateX: -90, opacity: 0 }, visible: { rotateX: 0, opacity: 1 }, }, className, }: SlightFlipProps) { return (