add: updated some stuff
This commit is contained in:
parent
8ed351a419
commit
f106c8c0f4
2 changed files with 31 additions and 25 deletions
|
@ -45,28 +45,34 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
import check from 'iconoir/icons/regular/double-check.svg'
|
||||
import type { Person } from '#components'
|
||||
import mail from 'iconoir/icons/regular/mail.svg'
|
||||
|
||||
const slots : number = 0
|
||||
const slotsLabel = `${slots} ${slots === 1 ? `Slot` : `Slots`} frei`
|
||||
|
||||
const freeFromDate = new Date(2025, 0, 1)
|
||||
const intl = new Intl.DateTimeFormat('de-DE', { day: '2-digit', month: '2-digit', year: 'numeric'})
|
||||
const readableDate = intl.format(freeFromDate)
|
||||
|
||||
const services = [
|
||||
{
|
||||
title: 'Bug Research',
|
||||
price: '99 € / Einmalig',
|
||||
title: 'Quick Check',
|
||||
price: '149 € / Einmalig',
|
||||
availability: 'Frei',
|
||||
smallClaim: 'Du hast einen Bug, aber weißt nicht woher? Kein Ding.',
|
||||
smallClaim: 'Du hast eine Homepage und willst mal drüber schauen lassen?',
|
||||
button: 'Jetzt untersuchen',
|
||||
link: 'https://tidycal.com/webfussel/bug-research',
|
||||
link: 'https://tidycal.com/webfussel/quick-check',
|
||||
list: [
|
||||
'Untersuchung des Quellcodes',
|
||||
'Konkrete Lösungsvorschläge',
|
||||
'Ergebnisse innerhalb von 7 Tagen',
|
||||
'Untersuchung der Performance',
|
||||
'Tipps zu CSS und Best Practices',
|
||||
'Behebung unkompliziert nachbuchen',
|
||||
'JavaScript, TypeScript, Vue oder Nuxt',
|
||||
'Für selbst gebaute Seiten',
|
||||
],
|
||||
}, {
|
||||
title: 'Projektbuchung',
|
||||
price: 'ab 999 € je nach Umfang',
|
||||
availability: '1 Slot Frei',
|
||||
availability: slotsLabel,
|
||||
smallClaim: 'Umsetzung deiner Vision. Von einzelnen Tickets bis hin zu kompletten Anwendungen.',
|
||||
button: 'Jetzt durchstarten',
|
||||
link: 'https://tidycal.com/webfussel/project-booking',
|
||||
|
@ -78,7 +84,7 @@ const services = [
|
|||
],
|
||||
}, {
|
||||
title: 'Stundenbuchung',
|
||||
availability: 'Frei ab 01.01.2025',
|
||||
availability: `Frei ab ${readableDate}`,
|
||||
price: '105 € / Stunde',
|
||||
smallClaim: 'Du brauchst einfach Unterstützung im Team, bis sich der Trubel legt?',
|
||||
button: 'Jetzt buchen',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue