https://github.com/zriyansh/next-ts-tailwind-starter
https://github.com/zriyansh/next-ts-tailwind-starter
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zriyansh/next-ts-tailwind-starter
- Owner: zriyansh
- Created: 2022-06-26T17:31:03.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-26T17:31:04.000Z (almost 4 years ago)
- Last Synced: 2024-12-29T21:30:03.220Z (over 1 year ago)
- Language: TypeScript
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
⚡next-ts-tailwind-starter⚡
Minimal Next.js + Tailwind CSS + TypeScript starter template.
Made by Piyush Pandey
### 1. Use this template in any of the two methods:
1. `Use this template` button. *(Recommended)*

- A new repo will be created

- Clone the repo from your GitHub and you are good to go!!!
2. Using `create-next-app`
```bash
npx create-next-app -e https://github.com/zephyrus21/next-ts-tailwind-starter project-name
```
or
```bash
yarn create next-app -e https://github.com/zephyrus21/next-ts-tailwind-starter project-name
```
**Disclaimer:** You can use `npm` or `yarn` as per your preference.
### 2. Install dependencies
`cd` to the project folder then
```bash
yarn install
```
### 3. Run the development server
You can start the server using this command:
```bash
yarn dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. You can start editing the page by modifying `src/pages/index.tsx`.