JSFiddle - React, Tailwind, and code Playground

by vzytoi

HTML

<div class="reseauxContainer">
  <h3>Rejoignez-nous sur nos réseaux!</h3>
  <ul class="reseaux">
    <li>Instagram</li>
    <li>Facebook</li>
    <li>Twitter</li>
  </ul>
</div>

CSS

* {
  padding: 0;
  margin: 0;
}
body {
  background: #f9f9f9;
}
.reseauxContainer {
  width: 100%;
  height: 100px;
  background-color: burlywood;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.reseaux li {
  list-style: none;
}