- PRD: vollständige Produktspezifikation (5 Module, Scope, Akzeptanzkriterien) - ARCHITECTURE: Tech Stack, Ordnerstruktur, Multi-Tenancy, Push, Kosten - DATABASE_SCHEMA: Vollständiges SQL-Schema mit RLS Policies und Views - USER_STORIES: 40+ Stories nach Rolle (Admin, Mitglied, Azubi, Obermeister) - PERSONAS: 5 detaillierte Nutzerprofile mit Alltag, Zitaten und Erwartungen - BUSINESS_MODEL: Preistabellen, Unit Economics, Revenue-Projektionen, Distribution - ROADMAP: 6 Phasen, Sprint-Planung, Meilensteine und KPIs - COMPETITIVE_ANALYSIS: Wettbewerbsmatrix, USPs, Preispositionierung - API_DESIGN: Supabase Query Patterns, Edge Functions, Realtime Subscriptions - ONBOARDING_FLOWS: 7 User Flows von Setup bis Fehlerfall - GTM_STRATEGY: 3-Phasen-Vertrieb, Outreach-Sequenz, Einwandbehandlung - AZUBI_MODULE: Video-Feed, 1-Click-Apply, Chat, Berichtsheft, Quiz - DSGVO_KONZEPT: Rechtsgrundlagen, TOMs, AVV, Minderjährige, Incident Response - FEATURES_BACKLOG: 72 Features nach MoSCoW + Technische Schulden Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
45 lines
1.5 KiB
TypeScript
45 lines
1.5 KiB
TypeScript
import { View, Text, TouchableOpacity } from 'react-native'
|
|
import { useRouter, useLocalSearchParams } from 'expo-router'
|
|
import { SafeAreaView } from 'react-native-safe-area-context'
|
|
|
|
export default function CheckEmailScreen() {
|
|
const router = useRouter()
|
|
const { email } = useLocalSearchParams<{ email: string }>()
|
|
|
|
return (
|
|
<SafeAreaView className="flex-1 bg-white">
|
|
<View className="flex-1 justify-center items-center px-6">
|
|
{/* Envelope Illustration */}
|
|
<View className="w-24 h-24 bg-brand-50 rounded-full items-center justify-center mb-6">
|
|
<Text className="text-5xl">📧</Text>
|
|
</View>
|
|
|
|
<Text className="text-2xl font-bold text-gray-900 text-center mb-3">
|
|
Schau in dein Postfach
|
|
</Text>
|
|
<Text className="text-gray-500 text-center leading-6 mb-2">
|
|
Wir haben einen Login-Link an
|
|
</Text>
|
|
<Text className="font-semibold text-gray-900 text-center mb-6">
|
|
{email}
|
|
</Text>
|
|
<Text className="text-gray-500 text-center leading-6">
|
|
Klicken Sie auf den Link in der E-Mail, um sich einzuloggen.
|
|
Der Link ist 24 Stunden gültig.
|
|
</Text>
|
|
|
|
<View className="mt-10 space-y-3 w-full">
|
|
<TouchableOpacity
|
|
onPress={() => router.back()}
|
|
className="py-3 items-center"
|
|
>
|
|
<Text className="text-brand-500 font-medium">
|
|
← Andere E-Mail verwenden
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
</View>
|
|
</SafeAreaView>
|
|
)
|
|
}
|