FIX: some fixes for rollout

Sizing, 3rd party calls, updates
This commit is contained in:
webfussel 2025-05-28 08:52:59 +02:00
parent 0c1999bb6e
commit f7f27838a8
6 changed files with 5049 additions and 3317 deletions

View file

@ -14,7 +14,7 @@
<p class="claim">{{service.smallClaim}}</p>
<p class="price">{{intl.format(service.price)}}</p>
<div aria-hidden="true" class="bg-icon">
<Icon :name="`ph:${service.icon}-thin`" size="1.5em" mode="svg" />
<Icon :name="service.icon" size="1.5em" mode="svg" />
</div>
</header>
<main>
@ -24,7 +24,7 @@
<span class="value">{{ service.hours }} Stunden pro Woche zugesichert</span>
</li>
<li v-for="(check, index) in service.checks">
<Icon class="icon" :class="{ 'yes' : check, 'no' : !check }" :name="`ph:${check ? 'check' : 'x'}-circle-duotone`" mode="svg" />
<Icon class="icon" :class="{ 'yes' : check, 'no' : !check }" :name="check ? 'ph:check-circle-duotone' : 'ph:x-circle-duotone'" mode="svg" />
<span class="value">{{ points[index] }}</span>
</li>
</ul>
@ -82,7 +82,7 @@ const flatrate : Service[] =
{
title: 'Casual',
smallClaim: 'Für kleine Aufgaben nebenbei.',
icon: 'baby-carriage',
icon: 'ph:baby-carriage-thin',
button: 'Jetzt klar machen',
link: 'https://tidycal.com/webfussel/flatrate-casual',
best: false,
@ -100,7 +100,7 @@ const flatrate : Service[] =
{
title: 'Gold-Fussel',
smallClaim: 'Wenn\'s mal wieder zu viel wird.',
icon: 'coins',
icon: 'ph:coins-thin',
button: 'Jetzt Gold schürfen',
link: 'https://tidycal.com/webfussel/flatrate-gold-fussel',
best: true,
@ -118,7 +118,7 @@ const flatrate : Service[] =
{
title: 'Big Chonker',
smallClaim: 'Für die richtig großen Sachen.',
icon: 'skull',
icon: 'ph:skull-thin',
button: 'Jetzt Fett trimmen',
link: 'https://tidycal.com/webfussel/flatrate-big-chonker',
best: false,