Add welcome page and helpers texts

This commit is contained in:
Sylvain Duchesne
2026-01-26 17:37:50 +01:00
parent 561a0df3fe
commit 9181cf46a0
7 changed files with 708 additions and 622 deletions
+2
View File
@@ -12,6 +12,7 @@ import { ParticipantsListScreen } from './ParticipantsListScreen';
import { MeetingPointsScreen } from './MeetingPointsScreen';
import { FriendsListScreen } from './FriendsListScreen';
import { ShareProfileScreen } from './ShareProfileScreen';
import { WelcomeScreen } from './WelcomeScreen';
export interface Screen {
id: string;
@@ -34,6 +35,7 @@ export const screenGroups: ScreenGroup[] = [
id: 'home',
name: 'Accueil',
screens: [
{ id: 'welcome', name: 'Bienvenue', component: WelcomeScreen },
{ id: 'home', name: 'Accueil', component: HomeScreen },
],
},