'use client'; import { motion } from 'framer-motion'; // ✉️ + ❤️ = 💌, "envelope" + "love" = "lovelope.app": everything collides, // contracts into a single point, then bursts into the merged result. Plays // once, on mount, then holds its final state (no loop). const times = [0, 0.28, 0.5, 0.58, 0.66, 0.78, 0.88, 1]; const transition = { duration: 2.4, times, ease: 'easeInOut' as const }; export default function LoveFusion({ className = '' }: { className?: string }) { return (
✉️ ❤️ 💌
envelope love lovelope .app
); }