import styled from '@emotion/styled'; const StyledPage = styled.div` .page { } `; export function Index() { /* * Replace the elements below with your own. * * Note: The corresponding styles are in the ./index.@emotion/styled file. */ return (

Hello there, Welcome nx-test 👋

You're up and running

What's next?

Next steps

Here are some things you can do with Nx:

Add UI library
                # Generate UI lib
                nx g @nrwl/next:library ui
                # Add a component
                nx g @nrwl/next:component button --project=ui
              
View interactive project graph
nx graph
Run affected commands
                # see what's been affected by changes
                nx affected:graph
                # run tests for current changes
                nx affected:test
                # run e2e tests for current changes
                nx affected:e2e
              

Carefully crafted with

); } export default Index;