Files
kamilcraft.com/src/views/NotFound.vue
Kamil Niemczycki 7475bb5671 Upgrade to vue 3 (#1)
* updated dependencies

* updated readme

* upgrade to vue 3

* updated buttons

* duplicate id removed

* updated contact
2022-07-13 09:48:44 +02:00

25 lines
423 B
Vue

<template>
<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>
<style lang="scss" scoped>
.not-found {
.container {
h1 {
margin-bottom: 25px;
}
padding-top: 45px;
padding-bottom: 45px;
}
}
</style>