# Bootstrap components
See [Bootstrap](bootstrap.md) in the layout section for information on the setup, alternatively download a basic setup.
Bootstrap provides several [examples](https://getbootstrap.com/docs/5.1/examples/) and a detailed [documentation](https://getbootstrap.com/docs/5.1/getting-started/introduction/).
## Static navbar
We're going through how to make use of it and insert a [static navbar](https://getbootstrap.com/docs/5.1/examples/navbar-fixed/).
You can copy it from its source code

or open the [navbar docs](https://getbootstrap.com/docs/5.1/components/navbar/) and copy the first code into the body of our `index.html`:
```html
bootstrap components
```
### Customization
- change the [breakpoint for expanding](https://getbootstrap.com/docs/5.1/components/navbar/?#responsive-behaviors)
- [brand](https://getbootstrap.com/docs/5.1/components/navbar/#brand)
- remove buttons (disabled, submit) + search bar
- insert new buttons
- [color schemes](https://getbootstrap.com/docs/5.1/components/navbar/?#color-schemes)
- [position](https://getbootstrap.com/docs/5.1/components/navbar/?#placement) to fixed top
- try a [offcanvas](https://getbootstrap.com/docs/5.1/components/navbar/?#offcanvas) menu
## Some other common components
[Carousel](https://getbootstrap.com/docs/5.1/components/carousel/)
[Collapse](https://getbootstrap.com/docs/5.1/components/collapse/)
[Dropdowns](https://getbootstrap.com/docs/5.1/components/collapse/)
[Modal](https://getbootstrap.com/docs/5.1/components/modal/)
[Offcanvas](https://getbootstrap.com/docs/5.1/components/offcanvas/)
[Scrollspy](https://getbootstrap.com/docs/5.1/components/scrollspy/)