First, run the development server:
npm run dev
# or
yarn devOpen http://localhost:3000 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.
API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.ts.
The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.
I'm using TailwindCSS as the main CSS framework. It is class based CSS framework where you can change the styling by add/remove classes.
e.g.
in /src/pages/index.tsx
line 38:
<p className="text-center md:text-left font-montserrat font-extrabold pb-4 text-4xl">
Are You Interested To Join Us? Let's Grow Together!
</p>
you can change the text color to green by adding class named text-green-500. Where 500 is the value of share of green.
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.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
The similar approach I'm using for https://azuddin-engame.vercel.app/
Check out our Next.js deployment documentation for more details.
For deployment on others, you will be needed to build the code using command below:
npm run export
# or
yarn exportWhich will generate a out folder containing the website bundle. In which later, you can put it (serve it) on any server of your liking.
Ultimately, you can refer Static HTML Deployment for more details.
- Install
yarn - open code repo, run
yarn - run
yarn devwhich will serve the website to http://localhost:3000
- Sourcetree
- VSCode
- yarn