add footer (#13)
All checks were successful
delpoy / build-and-deploy (push) Successful in 50s
All checks were successful
delpoy / build-and-deploy (push) Successful in 50s
This commit is contained in:
@ -73,7 +73,7 @@
|
||||
/>
|
||||
|
||||
<main>
|
||||
<div class="min-h-screen h-screen w-full">
|
||||
<div class="min-h-screen h-full w-full">
|
||||
<slot />
|
||||
</div>
|
||||
</main>
|
||||
@ -156,3 +156,19 @@
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
{#if !onAdminPage && $page.url.pathname !== `${env.PUBLIC_BASE_PATH}/register`}
|
||||
<footer>
|
||||
<div
|
||||
class="flex justify-around items-center h-14 w-full bg-base-300"
|
||||
class:hidden={onAdminPage}
|
||||
>
|
||||
<div>
|
||||
<p>© {new Date().getFullYear()} MHSL Craftattack Team</p>
|
||||
</div>
|
||||
<div class="flex gap-4">
|
||||
<a class="link" href="https://mhsl.eu/id.html" target="_blank">Impressum</a>
|
||||
<a class="link" href="https://mhsl.eu/datenschutz.html" target="_blank">Datenschutz</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
{/if}
|
||||
|
Reference in New Issue
Block a user