This is a template for Next.js 13, Typescript and Tailwind CSS.
First, you need to clone this repository:
git clone https://github.com/gelzinn/template-nextjs-ts-tailwind.git
After that, you need to install dependencies using your favorite package manager:
pnpm install
# or
npm install
# or
yarn install
Then, you can start development server:
pnpm dev
# or
npm run dev
# or
yarn dev
Open http://localhost:3000 with your browser to see the result.
After that, you can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
By default, this template uses pnpm as a package manager. If you want to use another package manager, you can remove
pnpm-lock.yaml
file and install dependencies using your favorite package manager.
Basic commands:
dev
- start development serverbuild
- build your projectstart
- start production serverpreview
- start preview server
Other commands:
lint
- lint your code
You can create your own commands in
package.json
file. Just add your command inscripts
section.
If you want to contribute to this project, you can create a pull request. I will be happy to see your pull request.
Contributions are always welcome!
Don't forget to give this repository a ⭐ if you like it, this will help this project to grow up and improve. Thank you!
To use this template, you need to know Next.js, Typescript and Tailwind CSS. Below you will find some resources to learn more about these technologies.
Next.js resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
Other resources:
- Tailwind CSS Documentation - learn about Tailwind CSS features and API.
- Typescript Documentation - learn about Typescript features and API.
You can check out the Next.js GitHub repository!
This project is licensed under the MIT License - see the LICENSE.md file for details.