mirror of
https://github.com/neosubhamoy/neodlp-website.git
synced 2026-02-04 10:02: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>
|
||||
Download for Windows
|
||||
</span>
|
||||
<span className="text-xs">(x64) EXE Installer</span>
|
||||
<span className="text-xs">(x64 / ARM64) EXE Installer</span>
|
||||
</SlidingButton>
|
||||
<SlidingButton
|
||||
slidingContent={
|
||||
|
||||
@@ -118,7 +118,7 @@ export const ContainerScroll = ({
|
||||
</svg>
|
||||
Download for Windows
|
||||
</span>
|
||||
<span className="text-xs">(x64) EXE Installer</span>
|
||||
<span className="text-xs">(x64 / ARM64) EXE Installer</span>
|
||||
</SlidingButton>
|
||||
)}
|
||||
{os === "macos" && (
|
||||
|
||||
@@ -19,6 +19,15 @@ const { title, description } = Astro.props;
|
||||
<title>{title ?? 'untitled'}</title>
|
||||
<ClientRouter />
|
||||
<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>
|
||||
<body class="relative min-h-screen bg-white dark:bg-black">
|
||||
<NavBar client:load />
|
||||
|
||||
Reference in New Issue
Block a user