You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
geodata-catalog/frontend/src/components/NotFound.vue

20 lines
379 B

<template>
<div>
<navbar />
<h1>Такая страница не найдена</h1>
<p>Если вы считаете это ошибкой сообщите нам на webmaster@`${DOMAIN}`</p>
</div>
</template>
<script>
import Navbar from "./Navbar.vue";
export default {
components: { Navbar }
}
</script>
<style lang="css">
</style>