-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ADD: first iteration of the onboarding screen * UPDATE: bump version to 1.2.0 * ADD: help translate, report bug buttons * ADD: Add skip to next reminder button and badges to the review details * ADD: show empty questions and options
- Loading branch information
Showing
41 changed files
with
698 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { LanguageSource } from 'src/@types/services'; | ||
import resources from 'src/resources'; | ||
|
||
export const onBoardingSteps = [ | ||
{ | ||
title: LanguageSource.onboardingTitle1, | ||
description: LanguageSource.onboardingDescription1, | ||
image: resources.images.onBoarding.illustration1, | ||
}, | ||
{ | ||
title: LanguageSource.onboardingTitle2, | ||
description: LanguageSource.onboardingDescription2, | ||
image: resources.images.onBoarding.illustration2, | ||
}, | ||
{ | ||
title: LanguageSource.onboardingTitle3, | ||
description: LanguageSource.onboardingDescription3, | ||
image: resources.images.onBoarding.illustration3, | ||
}, | ||
{ | ||
title: LanguageSource.onboardingTitle4, | ||
description: LanguageSource.onboardingDescription4, | ||
image: resources.images.onBoarding.illustration4, | ||
}, | ||
{ | ||
title: LanguageSource.onboardingTitle5, | ||
description: LanguageSource.onboardingDescription5, | ||
image: resources.images.onBoarding.illustration5, | ||
}, | ||
]; |
Oops, something went wrong.