Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 1.03 KB

README.md

File metadata and controls

45 lines (37 loc) · 1.03 KB

Template Next.JS + TypeScript

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.js. The page auto-updates as you edit the file.

Structure of Project

.
|__ public
|__ src
|  |__ pages
|  |   |__ _app.tsx
|  |   |__ _document.tsx
|  |   |__ index.tsx
|  |__ styles
|  |   |__ pages
|  |   |   |__ home.ts
|  |   |__ global.ts
|  |   |__ styled.d.ts
|  |   |__ global.ts
|  |   |__ theme.ts
|__ .editorconfig
|__ .eslintignore
|__ .eslintrc.json
|__ .gitignore
|__ babel.config.js
|__ next-env.d.ts
|__ next.config.js
|__ package.json
|__ prettier.config.js
|__ README.md
|__ tsconfig.json
|__ yarn.lock
|