Initial commit

This commit is contained in:
2026-05-03 19:27:23 +02:00
commit 70c52339df
41 changed files with 2422 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<script>
</script>
<div class="error-page">
<h1>500 - Errore del Server</h1>
<p>Si è verificato un errore interno del server. Riprova più tardi.</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>