This is the NAMIB Website, created using React & Next.js
First, run the development server:
npm run dev
# or
yarn dev
Open http://localhost:9000 with your browser to see the result.
You can start editing the page by modifying pages/index.tsx
. The page auto-updates as you edit the file.
First, build the project:
npm run export
# or
yarn export
Afterwards, build the static site resources:
npm run export
# or
yarn export
The /out
directory will contain all static files. They can be served on any HTTP-Webserver.
For development or testing purposes, you can serve the directory locally:
npm run serve
# or
yarn serve
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.