-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from sliit-foss/feat/add-google-analytics
Feat: add google analytics
- Loading branch information
Showing
1 changed file
with
56 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Google Tag Manager --> | ||
<script> | ||
(function (w, d, s, l, i) { | ||
w[l] = w[l] || []; | ||
w[l].push({ 'gtm.start': new Date().getTime(), 'event': 'gtm.js' }); | ||
var f = d.getElementsByTagName(s)[0], | ||
j = d.createElement(s), | ||
dl = l != 'dataLayer' ? '&l=' + l : ''; | ||
j.async = true; | ||
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; | ||
f.parentNode.insertBefore(j, f); | ||
})(window, document, 'script', 'dataLayer', 'GTM-PJLQK73J'); | ||
</script> | ||
<!-- End Google Tag Manager --> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="./public/assets/icons/favicon.svg" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
rel="preload" | ||
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" | ||
as="style" /> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta | ||
name="description" | ||
content="A unique competition that keeps the coders around the island on their toes. Welcome to ./bashaway 2024, the third edition of the first-ever scripting and automation competition!" /> | ||
<meta property="og:title" content="Bashaway | 2024" /> | ||
<meta | ||
property="og:description" | ||
content="A unique competition that keeps the coders around the island on their toes. Welcome to ./bashaway 2024, the third edition of the first-ever scripting and automation competition!" /> | ||
<meta property="og:image" content="https://bashaway.sliitfoss.org/assets/icons/favicon.svg" /> | ||
<meta property="og:image:width" content="64" /> | ||
<meta property="og:image:height" content="64" /> | ||
<meta property="og:image:alt" content="Bashaway Logo" /> | ||
<meta property="og:url" content="https://bashaway.sliitfoss.org" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:site_name" content="Bashaway" /> | ||
<meta property="og:locale" content="en_US" /> | ||
<title>Bashaway | 2024</title> | ||
</head> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="./public/assets/icons/favicon.svg"/> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" as="style" /> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta name="description" content="A unique competition that keeps the coders around the island on their toes. Welcome to ./bashaway 2024, the third edition of the first-ever scripting and automation competition!" /> | ||
<meta property="og:title" content="Bashaway | 2024" /> | ||
<meta property="og:description" content="A unique competition that keeps the coders around the island on their toes. Welcome to ./bashaway 2024, the third edition of the first-ever scripting and automation competition!" /> | ||
<meta property="og:image" content="https://bashaway.sliitfoss.org/assets/icons/favicon.svg" /> | ||
<meta property="og:image:width" content="64" /> | ||
<meta property="og:image:height" content="64" /> | ||
<meta property="og:image:alt" content="Bashaway Logo" /> | ||
<meta property="og:url" content="https://bashaway.sliitfoss.org" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:site_name" content="Bashaway" /> | ||
<meta property="og:locale" content="en_US" /> | ||
<title>Bashaway | 2024</title> | ||
</head> | ||
|
||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.jsx"></script> | ||
</body> | ||
|
||
</html> | ||
<body> | ||
<!-- Google Tag Manager (noscript) --> | ||
<noscript | ||
><iframe | ||
src="https://www.googletagmanager.com/ns.html?id=GTM-PJLQK73J" | ||
height="0" | ||
width="0" | ||
style="display: none; visibility: hidden"></iframe | ||
></noscript> | ||
<!-- End Google Tag Manager (noscript) --> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.jsx"></script> | ||
</body> | ||
</html> |