mirror of
https://github.com/neosubhamoy/neodlp-website.git
synced 2026-02-04 14:32:22 +05:30
feat: added google analytics tracking
This commit is contained in:
@@ -34,7 +34,7 @@ export default function AllDownloadsSection({ release }: { release: LatestReleas
|
|||||||
</svg>
|
</svg>
|
||||||
Download for Windows
|
Download for Windows
|
||||||
</span>
|
</span>
|
||||||
<span className="text-xs">(x64) EXE Installer</span>
|
<span className="text-xs">(x64 / ARM64) EXE Installer</span>
|
||||||
</SlidingButton>
|
</SlidingButton>
|
||||||
<SlidingButton
|
<SlidingButton
|
||||||
slidingContent={
|
slidingContent={
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ export const ContainerScroll = ({
|
|||||||
</svg>
|
</svg>
|
||||||
Download for Windows
|
Download for Windows
|
||||||
</span>
|
</span>
|
||||||
<span className="text-xs">(x64) EXE Installer</span>
|
<span className="text-xs">(x64 / ARM64) EXE Installer</span>
|
||||||
</SlidingButton>
|
</SlidingButton>
|
||||||
)}
|
)}
|
||||||
{os === "macos" && (
|
{os === "macos" && (
|
||||||
|
|||||||
@@ -19,6 +19,15 @@ const { title, description } = Astro.props;
|
|||||||
<title>{title ?? 'untitled'}</title>
|
<title>{title ?? 'untitled'}</title>
|
||||||
<ClientRouter />
|
<ClientRouter />
|
||||||
<LoadingIndicator color='var(--foreground)' />
|
<LoadingIndicator color='var(--foreground)' />
|
||||||
|
<!-- Google tag (gtag.js) -->
|
||||||
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NF56ZG492B"></script>
|
||||||
|
<script is:inline>
|
||||||
|
// @ts-nocheck
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag(){dataLayer.push(arguments);}
|
||||||
|
gtag('js', new Date());
|
||||||
|
gtag('config', 'G-NF56ZG492B');
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body class="relative min-h-screen bg-white dark:bg-black">
|
<body class="relative min-h-screen bg-white dark:bg-black">
|
||||||
<NavBar client:load />
|
<NavBar client:load />
|
||||||
|
|||||||
Reference in New Issue
Block a user