Skip to content

irving-caamal/Nextjs-Baseweb-Boilerplate

Repository files navigation

This is part of post entry called: The Gold Mine of UI Frameworks: Base Web React by UBER

You can check it in

Feel free to make a PR and help me to improve this repo :)

Baseweb UI Boilerplate

What is this?

  • A boilerplate of basic Next.js application integrated with BaseWeb UI.

What's include?

  • Next.js
  • Typescript
  • Eslint
  • Prettier
  • Styletron
  • BaseWeb UI
  • Commitizen friendly

How to use

  1. git clone https://github.com/irvv17/Nextjs-Baseweb-Boilerplate
  2. yarn or npm install
  3. yarn dev or npm run dev

How it works?

  1. Start creating Styletron application
  2. Config typescript
  3. Config Eslint and Prettier preferences
  4. Add Baseui to our app
  5. Add our first page with components
  6. Enjoy basewebui

Project structure

├── src
|   ├── components
|   |   ├── Footer.tsx
|   |   └── NavBar.tsx
|   ├── helpers
|   |   └── styletron.tsx
|   ├── pages
|   |   ├── _app.tsx
|   |   ├── _document.tsx
|   |   └── index.tsx
├── .eslintrc.json
├── .gitignore
├── .prettierrc
├── jest.config.js
├── next.config.js
├── package.json
├── README.md
├── tsconfig.jest.json
└── tsconfig.json