added content.svelte to handle page max width for specific elements; added alternative page banner

This commit is contained in:
2025-04-18 11:30:21 +02:00
parent 3d894c54fc
commit 9e582615fc
25 changed files with 1182 additions and 1036 deletions

10
src/lib/content.svelte Normal file
View File

@@ -0,0 +1,10 @@
<div class="content">
<slot />
</div>
<style>
.content {
max-width: 1200px;
margin: 0 auto 228px;
}
</style>