import { AwsIcon, BillColoredIcon, CapitalOneIcon, CaterpillarIcon, CiscoIcon, FicoIcon, HiltonIcon, ManIcon, ReactQueryIcon, RedwoodJsIcon, RoyalBankOfCanadaColoredIcon, SevenElevenColoredIcon, ShopifyIcon, StorybookIcon, VmwareIcon, } from '@nx/nx-dev/ui-icons'; import { motion } from 'framer-motion'; export function TrustedBy(): JSX.Element { const variants = { hidden: { opacity: 0, transition: { when: 'afterChildren', }, }, visible: (i: number) => ({ opacity: 1, transition: { delay: i || 0, }, }), }; const itemVariants = { visible: (i: number) => ({ opacity: 1, y: 0, transition: { delay: i * 0.25, duration: 0.65, ease: 'easeOut', when: 'beforeChildren', staggerChildren: 0.3, }, }), hidden: { opacity: 0, y: 4, transition: { when: 'afterChildren', }, }, }; return (
{/*
*/} {/* */} {/* Trusted by startups and Fortune 500 companies*/} {/* */} {/*
*/} {/**/} {/*
); }