added cookie-consent + privacy policy + fixed #32
All checks were successful
CSGOWTF/csgowtf/pipeline/head This commit looks good

This commit is contained in:
2022-01-30 19:53:30 +01:00
parent f901db4b29
commit 9f2a57e09f
9 changed files with 534 additions and 35 deletions

View File

@@ -9,14 +9,16 @@
<footer class="mt-auto">
<Footer/>
</footer>
<CookieConsentBtn id="cookie-btn"/>
</template>
<script>
import Nav from "@/components/Nav";
import Footer from "@/components/Footer";
import CookieConsentBtn from "@/components/CookieConsentBtn";
export default {
components: {Footer, Nav},
components: {Footer, Nav, CookieConsentBtn},
}
</script>
@@ -29,4 +31,10 @@ export default {
.spacer {
height: 70px;
}
#cookie-btn {
position: fixed;
bottom: 30px;
right: 20px;
}
</style>