import { HeartIcon } from '@heroicons/react/24/solid'; import Link from 'next/link'; export function Footer(): JSX.Element { const navigation = { solutions: [ { name: 'Nx', href: 'https://nx.dev' }, { name: 'NxCloud', href: 'https://nx.app/?utm_source=nx.dev' }, { name: 'Nrwl', href: 'https://nrwl.io/?utm_source=nx.dev' }, ], resources: [ { name: 'Blog', href: 'https://blog.nrwl.io/?utm_source=nx.dev' }, { name: 'Youtube Channel', href: 'https://youtube.com/nrwl_io?utm_source=nx.dev', }, { name: 'Nx Playbook', href: 'https://nxplaybook.com/?utm_source=nx.dev', }, { name: 'Nrwl', href: 'https://nrwl.io/?utm_source=nx.dev' }, { name: 'Press kit', href: 'https://nrwl.io/pages/brands?utm_source=nx.dev', }, ], community: [ { name: 'Twitter', href: 'https://twitter.com/NXdevtools' }, { name: 'Github', href: 'https://github.com/nrwl/nx/' }, { name: 'Newsletter', href: 'https://go.nrwl.io/nx-newsletter?utm_source=nx.dev', }, { name: 'Slack', href: 'https://go.nrwl.io/join-slack?utm_source=nx.dev', }, { name: 'Help Us', href: 'https://github.com/nrwl/nx/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Acommunity', }, ], help: [ { name: 'Documentation', href: '/getting-started/intro' }, { name: 'Community', href: '/community' }, { name: 'StackOverflow', href: 'https://stackoverflow.com/questions/tagged/nrwl-nx', }, { name: 'Report Issues', href: 'https://github.com/nrwl/nx/issues?q=is%3Aopen+is%3Aissue', }, ], social: [ { name: 'Twitter', href: 'https://twitter.com/NXdevtools?utm_source=nx.dev', icon: (props: any) => ( Twitter ), }, { name: 'GitHub', href: 'https://github.com/nrwl/nx?utm_source=nx.dev', icon: (props: any) => ( GitHub ), }, { name: 'Slack', href: 'https://go.nrwl.io/join-slack?utm_source=nx.dev', icon: (props: any) => ( Slack ), }, { name: 'Youtube', href: 'https://www.youtube.com/c/Nrwl_io?utm_source=nx.dev', icon: (props: any) => ( YouTube ), }, { name: 'Newsletter', href: 'https://go.nrwl.io/nx-newsletter?utm_source=nx.dev', icon: (props: any) => ( ), }, ], }; return ( ); }