import cx from 'classnames'; import Link from 'next/link'; export interface FooterProps { useDarkBackground?: boolean; } export function Footer({ useDarkBackground }: FooterProps) { 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' }, ], 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) => ( ), }, { name: 'GitHub', href: 'https://github.com/nrwl/nx?utm_source=nx.dev', icon: (props: any) => ( ), }, { name: 'Slack', href: 'https://go.nrwl.io/join-slack?utm_source=nx.dev', icon: (props: any) => ( ), }, { name: 'Newsletter', href: 'https://go.nrwl.io/nx-newsletter?utm_source=nx.dev', icon: (props: any) => ( ), }, ], }; return ( ); } export default Footer;