import styles from './index.module.css' import resume from '../../../_content/resume.json' import { LazyMotion, domAnimation, m, useReducedMotion } from 'framer-motion' import { getAnimationProps } from '../Transitions' import { NetworkLink } from './NetworkLink' type Props = { label: string small?: boolean } const containerVariants = { enter: { transition: { delay: 0.2, staggerChildren: 0.1 } } } export default function Networks({ label, small }: Props) { const shouldReduceMotion = useReducedMotion() const animationProps = getAnimationProps(shouldReduceMotion) return ( {resume.basics.profiles.map((profile) => ( ))} ) }