feat: implement page not found component with styled layout
testing/ogGui-multibranch/pipeline/head There was a failure building this commit Details

pull/24/head
Lucas Lara García 2025-05-29 11:58:47 +02:00
parent 7137768939
commit 3cd46e1166
2 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,16 @@
.main-container {
height: 100dvh;
display: grid;
place-content: center;
}
.content-container {
padding: 4em;
border: 1px solid #3f51b5;
border-radius: 30px;
}
.message {
font-size: 25px;
font-weight: 500;
}

View File

@ -1 +1,7 @@
<p>page-not-found works!</p>
<main>
<article class="main-container">
<div class="content-container">
<span class="message">Page not found</span>
</div>
</article>
</main>