Skip to content

Latest commit

 

History

History
77 lines (48 loc) · 2.58 KB

README.md

File metadata and controls

77 lines (48 loc) · 2.58 KB

Getting Started

First, run the development server:

npm run dev
# or
yarn dev

Open 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.

Styling (CSS)

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&apos;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.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

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.

Deploy on others

For deployment on others, you will be needed to build the code using command below:

npm run export
# or
yarn export

Which 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.

Notes

  1. Install yarn
  2. open code repo, run yarn
  3. run yarn dev which will serve the website to http://localhost:3000

Software

  1. Sourcetree
  2. VSCode
  3. yarn