create-digigov-app 1.0.0-4e7b7994 → 1.0.0-6b93ebf2
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-6b93ebf2",
|
|
4
4
|
"description": "Create a DigiGOV App with ease",
|
|
5
5
|
"bin": "cli.js",
|
|
6
6
|
"files": [
|
|
@@ -27,9 +27,9 @@
|
|
|
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-
|
|
30
|
+
"@digigov/cli": "1.0.0-6b93ebf2",
|
|
31
|
+
"@digigov/cli-lint": "1.0.0-6b93ebf2",
|
|
32
|
+
"@digigov/cli-test": "1.0.0-6b93ebf2",
|
|
33
33
|
"typescript": "4.2.3",
|
|
34
34
|
"publint": "0.1.8"
|
|
35
35
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
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 Section, { PageTitleHeading } from '@digigov/ui/app/PageTitle';
|
|
5
5
|
import CallToAction from '@digigov/ui/form/Button/CallToAction';
|
|
6
6
|
import Paragraph from '@digigov/ui/typography/Paragraph';
|
|
7
7
|
|
|
@@ -12,9 +12,9 @@ const Home = () => {
|
|
|
12
12
|
return (
|
|
13
13
|
<CommonLayout>
|
|
14
14
|
<Main>
|
|
15
|
-
<
|
|
15
|
+
<Section>
|
|
16
16
|
<PageTitleHeading>{t('app.name')}</PageTitleHeading>
|
|
17
|
-
</
|
|
17
|
+
</Section>
|
|
18
18
|
<Paragraph>{t('app.intro_text')}</Paragraph>
|
|
19
19
|
<CallToAction href="/login">{t('button.start')}</CallToAction>
|
|
20
20
|
</Main>
|
|
@@ -1,7 +1,7 @@
|
|
|
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 Section, { PageTitleHeading } from '@digigov/ui/app/PageTitle';
|
|
5
5
|
import CallToAction from '@digigov/ui/form/Button/CallToAction';
|
|
6
6
|
import Paragraph from '@digigov/ui/typography/Paragraph';
|
|
7
7
|
|
|
@@ -12,9 +12,9 @@ const Home: React.FC = () => {
|
|
|
12
12
|
return (
|
|
13
13
|
<CommonLayout>
|
|
14
14
|
<Main>
|
|
15
|
-
<
|
|
15
|
+
<Section>
|
|
16
16
|
<PageTitleHeading>{t('app.name')}</PageTitleHeading>
|
|
17
|
-
</
|
|
17
|
+
</Section>
|
|
18
18
|
<Paragraph>{t('app.intro_text')}</Paragraph>
|
|
19
19
|
<CallToAction href="/login">{t('button.start')}</CallToAction>
|
|
20
20
|
</Main>
|