import { ArrowUpRightIcon, ChevronRightIcon, ComputerDesktopIcon, MicrophoneIcon, NewspaperIcon, StarIcon, } from '@heroicons/react/24/outline'; import { DiscordIcon, GithubIcon, SectionHeading, Strong, TextLink, } from '@nx/nx-dev/ui-common'; import { XIcon, YoutubeIcon } from '@nx/nx-dev/ui-icons'; import Link from 'next/link'; import type { ReactElement } from 'react'; import { sendCustomEvent } from '@nx/nx-dev/feature-analytics'; const yearsAgo = new Date().getFullYear() - 2017; export function TeamAndCommunity(): ReactElement { const handleClick = (eventAction: string) => { sendCustomEvent( eventAction, 'githubstars-community-section', 'githubstarswidget' ); }; return (
Backed by an awesome team and a thriving community. Founded {yearsAgo} years ago by two ex-Googlers, our mission is to revolutionize software development with the power of{' '} monorepos and OSS . We are joined by a{' '} talented and enthusiastic team , many of which are publicly recognized GDEs and MVPs. We closely collaborate with many{' '} OSS projects {' '} and companies in the ecosystem. Our team is highly motivated to{' '} bring you the best learning material through various channels.
handleClick('githubstars_buttonclick')} href="https://github.com/nrwl/nx" target="_blank" rel="noopener noreferrer" className="flex items-center gap-2 hover:underline" > Give us a star on GitHub!
); }