"use client"; import { motion } from "motion/react"; import { cn } from "@/lib/utils"; import type { ReactNode } from "react"; type HighlightProps = { children: ReactNode; delay?: number; className?: string; }; /** * Signature animation: word enters as accent text on transparent ground, * then accent background fills behind it and text flips to ink-900. * Trigger once per viewport entry. */ export function Highlight({ children, delay = 0, className }: HighlightProps) { return ( {children} ); }