import { Tab } from '@headlessui/react'; import { Button, SectionHeading } from '@nx/nx-dev/ui-common'; import { AnimatePresence } from 'framer-motion'; import Link from 'next/link'; import { Fragment } from 'react'; import { tabs } from './extensible-and-integrated/tabs'; export function ExtensibleAndIntegrated(): JSX.Element { return (
Integrated developer experience Everything is just a click away

No need to browse the docs to find the right commands to run.{' '} Stay in the flow! Augment your editor with Nx Console, a dedicated extension available for{' '} VSCode {' '} ,{' '} JetBrains {' '} and{' '} Neovim . Generating a new library, running e2e tests, building your app - everything just a click away.

Debug and understand your workspace with the built-in{' '} nx graph capabilities! Also,{' '} give yourself a treat by enabling the Nx Cloud GitHub integration . Most CI interfaces are a struggle to work with and they are not made for monorepos. The{' '} Nx Cloud {' '} integration takes care of that, presenting what matters most in an awesome visual way.

{tabs.map((tab) => ( {({ selected }) => ( )} ))}
{tabs.map((tab) => ( {tab.panel} ))}
); }