"use client"; import { motion } from "framer-motion"; export function AmbientBackground() { const dots = Array.from({ length: 14 }, (_, i) => i); return (
{dots.map((i) => ( ))}
); }