Next.js first page
creating the "hello world" of Next.js
Now that we have the foundation setup for building our Next.js app, let's build our first page:
Homepage
In the
app
folder, create a file calledpage.tsx
and let's copy this in:
app/page.tsx
Let's now run this first page from a local server!
Last updated