inside index.html file, after <body> and before <div id="page-container">
insert
<a class="btn refresh" onclick="window.location.reload();"><i class="si si-reload"></i></a>
css...
.refresh {
    transform: rotate(-135deg);
    position: fixed;
    bottom: 7rem;
    right: 15px;
    z-index: 2147483657;
    border-radius: 35px;
    width: 60px;
    height: 60px;
    padding: 0;
    background: #000000;
    -webkit-box-shadow: -5px -5px 7px 0 rgb(0 0 0 / 30%), 0 2px 1px 0 rgb(93 141 213 / 20%);
    box-shadow: -5px -5px 7px 0 rgb(0 0 0 / 30%), 0 2px 1px 0 rgb(93 141 213 / 20%);
}
.refresh i {
    line-height: 60px;
    display: block;
    transform: scaleX(-1);
    font-size: 2rem;
    color: #ffffff;
}
maybe you need unminify your code https://unminify.com/