JSFiddle - React, Tailwind, and code Playground
by withn
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
.red {
color: red;
font-size: 100px;
}
</style>
</head>
<body>
<div class="header">
<header class="text-center">
<div>
<img src="#" class="img-fluid">
</div>
<div>
<p class="red">Text here.</p>
<p>More text.</p>
</div>
<div class="buttons">
<a href="#" class="btn btn-secondary btn-lg active" role="button" aria-pressed="true">Link</a>
</div>
</header>
</div>
</body>
</html>