mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-10 17:23:05 +01:00
14 lines
222 B
Vue
14 lines
222 B
Vue
<template>
|
|
<v-main>
|
|
<div class="fill-height d-flex flex-row align-center justify-center">
|
|
<h1>Page not found :(</h1>
|
|
</div>
|
|
</v-main>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "NotFound"
|
|
}
|
|
</script>
|