Start on Footer Design

Clean up some pages
Make style a bit less similar to BurgerKing... oops...
dab.jpg
This commit is contained in:
Michał Gdula 2024-04-23 18:45:40 +01:00
parent b56c3cc46d
commit 7907972e1c
13 changed files with 325 additions and 34 deletions

View file

@ -4,5 +4,31 @@
export let params = {};
</script>
<h1>404</h1>
<p>Could not find resource you've searched for. <a href="/" use:link>Go Back</a></p>
<div>
<h1>404</h1>
<p>Could not find resource you've searched for. <a href="/" use:link>Go Back</a></p>
</div>
<style>
div {
padding: 16px;
height: 100%;
display: flex;
flex-direction: column;
flex-grow: 1;
}
h1 {
text-align: center;
}
p {
text-align: center;
}
a {
text-decoration: none;
color: #6A9343;
&:hover {
text-decoration: underline;
}
}
</style>