This is a simple Next.js app set up to deploy on Seenode.
It shows a basic page and lets you add API routes if you need them.
Read the Seenode guide for Next.js.
- Go to the Seenode dashboard and create a new web service from this repo.
- Use these commands when asked:
- Build: npm run build
- Start: npm start
 
- Build: 
- Click Create. Seenode will give you a public URL when it’s live.
That's it! Your Next.js app will be deployed and available at a public URL.
- Works out of the box on Seenode.
- No port setup needed. Port is set to 80. Just make sure to enter 80 in the port input.
- Add API routes under app/apiif you want server endpoints.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
Edit the homepage at src/app/page.tsx. Changes show up automatically while the dev server runs.
This project uses next/font to load fonts.
Helpful links:
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!