Skip to content

unllamas/react-starter-kit

Repository files navigation

react-starter-kit

MIT License

🤓 Tech Stack

🚀 Get Started

Prerequisites:

To set up the app execute the following commands.

git clone https://github.com/unllamas/react-starter-kit.git
cd ...

Installation

pnpm install
pnpm dev

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

pnpm build

Builds the app for production to the dist folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

See the section about deployment for more information.

🗄️ Project Structure

Most of the code lives in the src folder and looks something like this:

src
├── app
│   └── index.(tsx)
│   └── provider.(tsx)
│   └── route.(tsx)
│   └── routes (pages folder)
│       └── home.(tsx)
│       └── not-found.(tsx)
├── components
│   └── ui
│   └── seo
│   └── errors
│   └── theme
├── features
│   └── navbar
│   └── hero
└── lib
    └── utils.(tsx)