import { motion } from 'motion/react'; import { Satellite, RadioTower, Anchor, Server, Cable, Megaphone } from 'lucide-react'; import { t } from '../i18n'; import { DASHBOARD_PATH } from '../routes'; import { SectionHeading } from './SectionHeading'; const STAT_CELLS = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] as const; const NUGGETS = [ { icon: Satellite, n: 1 }, { icon: RadioTower, n: 2 }, { icon: Anchor, n: 3 }, { icon: Server, n: 4 }, { icon: Cable, n: 5 }, { icon: Megaphone, n: 6 }, ] as const; export const Depth = () => (
);