/* global React */ const { useMemo } = React; function FloatingShapes() { // Stars distributed across viewport const stars = useMemo(() => { return Array.from({ length: 60 }).map((_, i) => ({ x: Math.random() * 100, y: Math.random() * 100, d: Math.random() * 4, s: 0.6 + Math.random() * 1.4, })); }, []); return ( <>