Update not found page

This commit is contained in:
Kamil Niemczycki 2021-10-15 10:51:18 +02:00
parent 2411c7e4cd
commit 3398ed6468

View File

@ -1,6 +1,30 @@
<template>
<div id="not-found">
<h1>Error 404</h1>
<p>Not found</p>
<div class="not-found">
<div class="container">
<header>
<h1>Błąd 404</h1>
</header>
<p>Szukana strona wygasła lub nie istnieje.</p>
<p>Sprawdź adres i spróbuj ponownie!</p>
</div>
</div>
</template>
<script>
export default {
name: 'NotFound'
}
</script>
<style lang="scss" scoped>
.not-found {
.container {
h1 {
margin-bottom: 25px;
}
padding-top: 45px;
padding-bottom: 45px;
}
}
</style>