"use client" import { motion } from "motion/react" import UnderlineToBackground from "@/fancy/components/text/underline-to-background" export default function UnderlineToBackgroundDemo() { const fadeInVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { duration: 0.5, staggerChildren: 0.1 }, }, } const wordVariants = { hidden: { opacity: 0 }, visible: { opacity: 1 }, } const words = "Weekly goodies delivered straight to your inbox —".split(" ") return (