JSFiddle - React, Tailwind, and code Playground

HTML

<div class="nav_top">Text</div>
<div class="nav_bottom">Text 2</div>

CSS

* {
    padding: 0;
    margin: 0;
}
.nav_top {
    height: 50px; /* Для примера */
    width: 100%;
    background-color: #000000; /* Для примера */
}
.nav_bottom {
    height: 60px; /* Для примера */
    width: 100%;
    background-color: #4f54f5; /* Для примера */
}