feat: footer cleanup
Some checks failed
Build Latest image / build-container (push) Has been cancelled

This commit is contained in:
Philipp Dormann 2025-03-28 18:59:53 +01:00
parent c9e3b613e1
commit 65dc27add1
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314
5 changed files with 23 additions and 18 deletions

View File

@ -1,5 +1,5 @@
<template> <template>
<footer class="p-8"> <footer>
<p class="text-sm sm:py-2 sm:mt-0 mt-4 text-center md:text-left"> <p class="text-sm sm:py-2 sm:mt-0 mt-4 text-center md:text-left">
Lauf für Kaya! Selfservice<br>Copyright © 2025<br>proudly powered by Lauf für Kaya! Selfservice<br>Copyright © 2025<br>proudly powered by
<a class="underline" target="_blank" rel="noopener,noreferrer" <a class="underline" target="_blank" rel="noopener,noreferrer"

View File

@ -4,8 +4,7 @@
<section class="px-4 py-24 mx-auto"> <section class="px-4 py-24 mx-auto">
<div class="w-full mx-auto text-center"> <div class="w-full mx-auto text-center">
<img src="/favicon-lfk.png" class="h-32 mx-auto" /> <img src="/favicon-lfk.png" class="h-32 mx-auto" />
<h1 <h1 class="mb-6 text-4xl font-extrabold leading-none tracking-normal md:text-6xl md:tracking-tight">
class="mb-6 text-4xl font-extrabold leading-none tracking-normal md:text-6xl md:tracking-tight">
Lauf Für Kaya!<br>2025</h1> Lauf Für Kaya!<br>2025</h1>
<h2 class="mb-6 text-xl font-bold leading-none tracking-normal md:text-3xl md:tracking-tight"> <h2 class="mb-6 text-xl font-bold leading-none tracking-normal md:text-3xl md:tracking-tight">
Selfservice Portal</h2> Selfservice Portal</h2>
@ -18,7 +17,9 @@
</div> </div>
</section> </section>
</div> </div>
<div class="p-8">
<Footer /> <Footer />
</div>
</template> </template>
<script setup> <script setup>

View File

@ -9,7 +9,8 @@
' ' + ' ' +
(state.lastname || '') (state.lastname || '')
"></h1> "></h1>
<p class="text-md whitespace-nowrap">Team: {{ state.group }}</p> <p v-if="state.group==='Citizen'" class="text-md whitespace-nowrap">Bürgerlauf<br>Start: 14:00 Uhr</p>
<p v-else class="text-md whitespace-nowrap">Team: {{ state.group }}</p>
</div> </div>
<h1 v-else class="text-3xl font-bold whitespace-nowrap">Daten werden geladen...</h1> <h1 v-else class="text-3xl font-bold whitespace-nowrap">Daten werden geladen...</h1>
</div> </div>
@ -416,7 +417,7 @@
</div> </div>
</div> </div>
<!-- --> <!-- -->
<Footer></Footer> <Footer />
</div> </div>
</template> </template>

View File

@ -55,7 +55,7 @@
</div> </div>
</div> </div>
</div> </div>
<Footer></Footer> <Footer />
</template> </template>
<script setup> <script setup>

View File

@ -120,7 +120,8 @@
<label for="phone" class="block font-semibold mt-2">{{ <label for="phone" class="block font-semibold mt-2">{{
$t("phone_number") $t("phone_number")
}}</label> }}</label>
<div v-if="userdetails.phone!=='' && !userdetails.phone.includes('+')" class="bg-blue-100 border border-blue-200 text-black rounded-lg p-4 mb-1" role="alert" tabindex="-1" <div v-if="userdetails.phone !== '' && !userdetails.phone.includes('+')"
class="bg-blue-100 border border-blue-200 text-black rounded-lg p-4 mb-1" role="alert" tabindex="-1"
aria-labelledby="hs-actions-label"> aria-labelledby="hs-actions-label">
<div class="flex"> <div class="flex">
<div class="shrink-0"> <div class="shrink-0">
@ -327,7 +328,9 @@
</div> </div>
</div> </div>
</div> </div>
<Footer></Footer> <div class="p-8">
<Footer />
</div>
</template> </template>
<script setup> <script setup>