upgrade to tamagui v2 and guest pwa overhaul

This commit is contained in:
Codex Agent
2026-02-02 13:01:20 +01:00
parent 2e78f3ab8d
commit 7c6e14ffe2
168 changed files with 47462 additions and 8914 deletions

View File

@@ -34,7 +34,7 @@ export default function MobileHelpArticlePage() {
return (
<MobileShell activeTab="profile" title={article?.title ?? t('common.help', 'Help')} onBack={back}>
{isLoading ? (
<YStack space="$2">
<YStack gap="$2">
<SkeletonCard height={120} />
<SkeletonCard height={160} />
</YStack>
@@ -42,7 +42,7 @@ export default function MobileHelpArticlePage() {
{isError ? (
<MobileCard>
<YStack space="$2">
<YStack gap="$2">
<Text fontSize="$sm" fontWeight="700" color={theme.textStrong}>
{t('dashboard:help.error', 'Help could not be loaded.')}
</Text>
@@ -56,9 +56,9 @@ export default function MobileHelpArticlePage() {
) : null}
{!isLoading && article ? (
<YStack space="$3">
<YStack gap="$3">
<MobileCard>
<YStack space="$2">
<YStack gap="$2">
<Text fontSize="$lg" fontWeight="800" color={theme.textStrong}>
{article.title}
</Text>
@@ -81,7 +81,7 @@ export default function MobileHelpArticlePage() {
{article.related && article.related.length > 0 ? (
<MobileCard>
<YStack space="$2">
<YStack gap="$2">
<Text fontSize="$sm" fontWeight="700" color={theme.textStrong}>
{t('help.article.relatedTitle', 'Weitere Artikel')}
</Text>