25 lines
423 B
Vue
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>
|