create-digigov-app 1.0.0-8bbf3ef2 → 1.0.0-ab30975f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-digigov-app",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-ab30975f",
|
|
4
4
|
"description": "Create a DigiGOV App with ease",
|
|
5
5
|
"bin": "cli.js",
|
|
6
6
|
"files": [
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"publint": "0.1.8"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@digigov/cli": "1.0.0-
|
|
31
|
-
"@digigov/cli-lint": "1.0.0-
|
|
32
|
-
"@digigov/cli-test": "1.0.0-
|
|
33
|
-
"typescript": "4.2
|
|
30
|
+
"@digigov/cli": "1.0.0-ab30975f",
|
|
31
|
+
"@digigov/cli-lint": "1.0.0-ab30975f",
|
|
32
|
+
"@digigov/cli-test": "1.0.0-ab30975f",
|
|
33
|
+
"typescript": "4.7.2",
|
|
34
34
|
"publint": "0.1.8"
|
|
35
35
|
},
|
|
36
36
|
"license": "BSD-2-Clause",
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { useTranslation } from '@digigov/ui/i18n';
|
|
3
3
|
import { Main, Side } from '@digigov/ui/layouts/Basic';
|
|
4
|
-
import
|
|
4
|
+
import {
|
|
5
|
+
PageTitleContainer,
|
|
6
|
+
PageTitleHeading
|
|
7
|
+
} from '@digigov/ui/app/PageTitleContainer';
|
|
5
8
|
import CallToAction from '@digigov/ui/form/Button/CallToAction';
|
|
6
9
|
import Paragraph from '@digigov/ui/typography/Paragraph';
|
|
7
10
|
|
|
@@ -12,9 +15,9 @@ const Home = () => {
|
|
|
12
15
|
return (
|
|
13
16
|
<CommonLayout>
|
|
14
17
|
<Main>
|
|
15
|
-
<
|
|
18
|
+
<PageTitleContainer>
|
|
16
19
|
<PageTitleHeading>{t('app.name')}</PageTitleHeading>
|
|
17
|
-
</
|
|
20
|
+
</PageTitleContainer>
|
|
18
21
|
<Paragraph>{t('app.intro_text')}</Paragraph>
|
|
19
22
|
<CallToAction href="/login">{t('button.start')}</CallToAction>
|
|
20
23
|
</Main>
|