Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maestropravaler/next.js_started


https://github.com/maestropravaler/next.js_started

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# Pequeno Projeto em Next.js

1. Criar um projeto em next
```
npx create-next-app next-started
```
2. Criar o diretório pages/instrumentos e dentro o arquivo index.js | Objetivo: compreender o sistema de rotas.
```
// Para acessar o componente somente digite no browser /nomedodiretoriocriado
http://localhost:3000/instrumentos
```

3. Instalar o bootstrap
```
npm install bootstrap --save
```
No arquivo _app.js
```
import 'bootstrap/dist/css/bootstrap.css'
```

4. Resultado final com algumas classes do bootstrap incorporadas
![](public/assets/images/next_started.png)