creating the "hello world" of Next.js
Last updated 2 months ago
Now that we have the foundation setup for building our Next.js app, let's build our first page:
In the app folder, create a file called page.tsx and let's copy this in:
app
page.tsx
export default function Main() { return ( <h1>Home</h1> ) }
Let's now !