-
Notifications
You must be signed in to change notification settings - Fork 10
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 #1533 from isomerpages/release/0.46.0
0.46.0
- Loading branch information
Showing
45 changed files
with
1,972 additions
and
528 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
16 changes: 16 additions & 0 deletions
16
src/features/AnnouncementModal/components/AnnouncementDescription.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,16 @@ | ||
import { Link, Text } from "@chakra-ui/react" | ||
|
||
export const AnnouncementDescription = (): JSX.Element => { | ||
return ( | ||
<> | ||
<Text textStyle="body-1" color="base.content.default"> | ||
Make your website stand out with new layout options. For technical | ||
reasons, this feature is only available to users using email to log in. | ||
</Text> | ||
<Text textStyle="body-1" color="base.content.default" mt="1rem"> | ||
<Link href="mailto:[email protected]">Contact us</Link> to | ||
understand more about getting access to new features like this. | ||
</Text> | ||
</> | ||
) | ||
} |
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,29 @@ | ||
import { Icon, Text } from "@chakra-ui/react" | ||
import { Badge } from "@opengovsg/design-system-react" | ||
import { BiCheck } from "react-icons/bi" | ||
|
||
export const HeroOptionsFeatureTourContent = (): JSX.Element => { | ||
return ( | ||
<> | ||
<Badge | ||
mt="2rem" | ||
variant="subtle" | ||
display="inline-flex" | ||
columnGap="0.5rem" | ||
alignItems="center" | ||
colorScheme="brand.secondary" | ||
> | ||
<Icon as={BiCheck} h="1rem" w="1rem" /> | ||
<Text textStyle="caption-1">New feature</Text> | ||
</Badge> | ||
<Text textStyle="subhead-1" mt="1rem" color="base.content.default"> | ||
{" "} | ||
Now you can customise your hero banner with various layouts!{" "} | ||
</Text> | ||
<Text textStyle="body-2" mt="0.5rem" color="base.content.default"> | ||
{`We've added some variations to how you can display your hero section. | ||
Try them out here.`} | ||
</Text> | ||
</> | ||
) | ||
} |
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
Oops, something went wrong.