Skip to content

Commit 5aea314

Browse files
authored
Merge pull request #36 from aws-samples/website
Website. Bug fixes and addition of gtag manager
2 parents 7122585 + d6e5f2e commit 5aea314

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

website/docusaurus.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ const config = {
6060
anonymizeIP: true,
6161
},
6262
],
63+
[
64+
'@docusaurus/plugin-google-tag-manager',
65+
{
66+
containerId: 'GTM-WQ97QTTR',
67+
},
68+
],
6369
],
6470

6571
themeConfig:

website/package-lock.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"dependencies": {
1717
"@docusaurus/core": "^3.1.0",
1818
"@docusaurus/plugin-google-gtag": "^3.1.0",
19+
"@docusaurus/plugin-google-tag-manager": "^3.1.0",
1920
"@docusaurus/preset-classic": "^3.1.0",
2021
"@mdx-js/react": "^3.0.0",
2122
"clsx": "^2.0.0",

website/src/components/HomepageFeatures/index.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@ const FeatureList = [
77
title: 'Open Source',
88
Icon: "⚀",
99
description: (
10-
<>
11-
Deployment code is fully open source and available on GitHub. You can see what you are going to deploy before deploying it.
12-
</>
10+
<span>
11+
Deployment code is fully open source and available on GitHub. You can see what you are going to deploy before deploying it.
12+
</span>
1313
),
1414
},
1515
{
1616
title: 'Scalable',
1717
Icon: "⚁",
1818
description: (
19-
<div>
19+
<span>
2020
Best Practice Blockchain Nodes Deployment Templates and Examples to run across Regions.
21-
</div>
21+
</span>
2222
),
2323
},
2424
{
2525
title: 'Highly Available',
2626
Icon: "⚂",
2727
description: (
28-
<div>
28+
<span>
2929
Multi-Node Highly Available deployment options to run across Availability Zones.
30-
</div>
30+
</span>
3131
),
3232
},
3333
];

0 commit comments

Comments
 (0)