Skip to content

Commit 1aecc8a

Browse files
authored
fix: add gtm (#68)
1 parent f263eed commit 1aecc8a

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

apps/app/src/components/fragments/project-card/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ export const ProjectCard = ({
4343
</mui.Typography>
4444
</mui.CardContent>
4545
<mui.CardActions css={styles.actions}>
46-
<mui.IconButton onClick={onCopy} size="medium">
46+
<mui.IconButton color="primary" onClick={onCopy} size="medium">
4747
<muiIcon.CopyAll />
4848
</mui.IconButton>
4949
<mui.IconButton
5050
aria-label={`Open ${title}`}
51+
color="primary"
5152
href={url}
5253
LinkComponent={GatsbyLink}
5354
size="medium"

apps/app/src/providers/theme-provider/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ import * as React from "react";
1010
import { useThemeModeStore } from "../../stores/use-theme-mode-store";
1111
import { GlobalStyles } from "./global-styles";
1212

13+
// https://www.canva.com/colors/color-palettes/balloon-parade/
1314
const themeOption = {
1415
palette: {
1516
primary: {
16-
main: "#6750A4",
17+
main: "#0e63c2",
1718
},
1819
secondary: {
19-
main: "#958da4",
20+
main: "#6bcae2",
2021
},
2122
},
2223
} satisfies ThemeOptions;

apps/counter/index.html

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,17 @@
66
<title>Counter</title>
77
<base data-trunk-public-url href="/apps/counter/" />
88
</head>
9-
<body style="height: 100%; margin: 0">
9+
<body style="height: 100vh; margin: 0">
10+
<!-- Google Tag Manager (noscript) -->
11+
<noscript
12+
><iframe
13+
src="https://www.googletagmanager.com/ns.html?id=GTM-KX72TPPN"
14+
height="0"
15+
width="0"
16+
style="display: none; visibility: hidden"
17+
></iframe
18+
></noscript>
19+
<!-- End Google Tag Manager (noscript) -->
1020
<link
1121
data-trunk
1222
rel="rust"

0 commit comments

Comments
 (0)