-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #441 from gertrude-app/encourage-filter-suspensions
appviews: new onboarding encourage filter suspensions step
- Loading branch information
Showing
7 changed files
with
48 additions
and
0 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
34 changes: 34 additions & 0 deletions
34
appviews/src/Onboarding/Steps/EncourageFilterSuspensions.tsx
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,34 @@ | ||
import React from 'react'; | ||
import ExpandableContent from '../ExpandableContent'; | ||
import * as Onboarding from '../UtilityComponents'; | ||
import assets from '../cdn-assets'; | ||
|
||
const EncourageFilterSuspensions: React.FC = () => ( | ||
<Onboarding.Centered direction="row" className="space-x-12"> | ||
<ExpandableContent | ||
className="!ml-0" | ||
asset={assets.img(`encourage-filter-suspensions`)} | ||
width={800 / 2.3} | ||
height={600 / 2.3} | ||
lessRounded | ||
/> | ||
<div className="flex flex-col !mr-0"> | ||
<Onboarding.Heading>Start in “Easy Mode”</Onboarding.Heading> | ||
<Onboarding.Text className="max-w-2xl mt-4 mb-4"> | ||
While you work on getting websites and apps unblocked, feel free to use{` `} | ||
<b>lots of temporary filter suspensions</b> to simplify the first few days. | ||
Especially <em>if your kids are older</em> and need to do lots of work online, | ||
right away. | ||
</Onboarding.Text> | ||
<Onboarding.Text className="max-w-2xl-4 mb-8"> | ||
Keep screenshot monitoring enabled, and let your child know you’ll be able to see | ||
what they do. | ||
</Onboarding.Text> | ||
<Onboarding.PrimaryButton icon="fa-solid fa-arrow-right"> | ||
Got it | ||
</Onboarding.PrimaryButton> | ||
</div> | ||
</Onboarding.Centered> | ||
); | ||
|
||
export default EncourageFilterSuspensions; |
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