Files
csgowtf/src/views/errorPages/ErrorPage404.vue
Giovanni Harting 7605e46a7c
Some checks failed
CSGOWTF/csgowtf/pipeline/head There was a failure building this commit
updated deps
2022-11-11 14:11:19 +01:00

17 lines
254 B
Vue

<template>
<div class="text-center mt-5">
<h1 class="pt-5">404</h1>
<h4 class="mt-4">The page you were looking for was not found!</h4>
</div>
</template>
<script>
export default {
name: "ErrorPage404"
}
</script>
<style scoped>
</style>