source, static files & Dockerfile

This commit is contained in:
2025-04-08 21:47:35 +02:00
parent 24ab595ab3
commit 68ebc7568e
92 changed files with 4348 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<script lang="ts">
export let title: string;
export let description: string;
</script>
<article class="main-container">
<div class="header">
<h2>{title}</h2>
<label>{description}</label>
</div>
<slot></slot>
</article>
<style lang="scss">
article {
position: relative;
display: flex;
flex-direction: column;
flex-wrap: unset;
display: flex;
gap: 1rem;
}
.header {
display: flex;
flex-direction: column;
}
</style>