forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLandingPage.js
More file actions
29 lines (28 loc) · 870 Bytes
/
LandingPage.js
File metadata and controls
29 lines (28 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import React from 'react'
import { Trans } from '@lingui/macro'
import { Layout } from './Layout'
import { Heading, Text } from '@chakra-ui/core'
import { SummaryGroup } from './SummaryGroup'
export function LandingPage() {
return (
<Layout>
<Heading as="h1" mb="2">
<Trans>Track Web Security Compliance</Trans>
</Heading>
<Text fontSize="lg">
<Trans>
Canadians rely on the Government of Canada to provide secure digital
services. A new policy notice guides government websites to adopt good
web security practices. Track how government sites are becoming more
secure.
</Trans>
</Text>
<SummaryGroup name="dashboard" />
<Text>
<Trans>
*All data represented is mocked for demonstration purposes
</Trans>
</Text>
</Layout>
)
}