JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container" style="background-color:#e02; color:#fff;">
      <div class="content">
        <header>
          <h1>
            Title
          </h1>
        </header>
      </div>
    
      <div class="container" style="background-color:#fff";>
        <div class="content   ">
          <ul class="links">
            <a>Users</a>
            <a>Users</a> 
            <a>Users</a> 
            <a>Users</a> 
          </ul>
          <div class="text" style="background-color: #DDD;">
            <p>
              Go to this links and
            </p>
    
          </div>
        </div>
      </div>
    </div>

CSS

*, *:before, *:after{
      margin: 0;
      padding: 0;
    }


    .container{float:left; width:100%}
    .header {width:50%; margin:0 25%; padding: 40px 0} 
    .content{width:50%; margin:0 25%; } 
    
    .links{
      width: 100%;
      display: block;
      margin-top: -20px;
    }
    
    
    .links a{
      padding: 30px;
      float: left;
      color:#aaa;
      font-size: 16px;
      font-weight: 600; 
      background: yellow;
    }
    
    .text {
      clear: both;
    }