29 lines
477 B
Svelte
29 lines
477 B
Svelte
<script>
|
|
</script>
|
|
|
|
<div class="error-page">
|
|
<h1>404 - Pagina Non Trovata</h1>
|
|
<p>La pagina che stai cercando non esiste.</p>
|
|
</div>
|
|
|
|
<style>
|
|
.error-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 60vh;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
margin: 0;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.2rem;
|
|
color: #666;
|
|
}
|
|
</style>
|