JSFiddle - React, Tailwind, and code Playground
HTML
<section class="about">
<div class="container">
<h1 class="text-center">The Resturant</h1>
<h3 class="text-center">A little about us and a brief history of how we started</h3>
<div class="about-border"></div>
</div>
</section>
CSS
h1, h3 {
text-align: center;
}
.about-border {
display: block;
width: 80px;
height: 3px;
background: #f1cd8f;
margin: 20px auto;
}