JSFiddle - React, Tailwind, and code Playground

HTML

<div class="bar">
    <a href="http://www.youtube.com/watch?v=dtKJCIeozQ8" target="_blank">Home, sweet home!</a>
</div>

CSS

body { background: url(http://placekitten.com/20/20); }

.bar {
    position: relative;
    width: 90%;
    height: 30px;
    margin: 0 auto;
    border: 1px solid blue;
}

.bar > a {
    position: absolute;
    top: 0px;
    left:  60%;
    width: 20%;
    text-align: center;
    font-size: 30px;
    color: yellow;
    padding-top: 30px;
}

.bar > a:before, .bar > a:after {
    content:'';
    position: absolute;
    z-index: -1;
    top: 0;
    width: 0;
    height: 30px;
    border-top: 30px solid transparent;
}

.bar > a:before {
    border-left: 20px solid red;
    left: 50%;
}
.bar > a:after {
    border-right: 20px solid blue;
    right: 50%;
}

.bar:before, .bar:after {
    content:'';
    position: absolute;
    top: 0;
    height: 0;
    border-top: 30px solid white;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
          box-sizing: border-box;
}

.bar:before {
    left: 0;
    width: 70%;
    border-right: 30px solid transparent;
}

.bar:after {
    right:0;
    width: 30%;
    border-left: 30px solid transparent;
}