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

@@ -41,7 +41,7 @@ export default function MobileHelpCenterPage() {
return (
<MobileShell activeTab="profile" title={t('common.help', 'Help')} onBack={back}>
{isLoading ? (
<YStack space="$2">
<YStack gap="$2">
<SkeletonCard height={120} />
<SkeletonCard height={120} />
</YStack>
@@ -49,7 +49,7 @@ export default function MobileHelpCenterPage() {
{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>
@@ -63,7 +63,7 @@ export default function MobileHelpCenterPage() {
) : null}
{!isLoading && !isError ? (
<YStack space="$3">
<YStack gap="$3">
<HelpSection
title={t('dashboard:help.title', 'FAQ')}
icon={HelpCircle}
@@ -100,8 +100,8 @@ function HelpSection({
return (
<MobileCard padding="$0">
<YStack padding="$3" space="$2">
<XStack alignItems="center" space="$2">
<YStack padding="$3" gap="$2">
<XStack alignItems="center" gap="$2">
{IconCmp ? (
<XStack
width={28}