-
Notifications
You must be signed in to change notification settings - Fork 0
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 #6 from RealEskalate/sami.timeline
adding google analytic script
- Loading branch information
Showing
1 changed file
with
73 additions
and
48 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,57 +1,82 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html lang="en" class="bg-black"> | ||
<head> | ||
<!-- Google tag (gtag.js) --> | ||
<meta charset="utf-8"> | ||
<head> | ||
<!-- Google tag (gtag.js) --> | ||
<meta charset="utf-8" /> | ||
|
||
<!-- <script type="module" defer> | ||
<!-- <script type="module" defer> | ||
import { polyfillCountryFlagEmojis } from "https://cdn.skypack.dev/country-flag-emoji-polyfill"; | ||
polyfillCountryFlagEmojis(); | ||
</script> --> | ||
|
||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7HXJWX81FN"></script> | ||
<script src="https://www.youtube.com/iframe_api"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-7HXJWX81FN'); | ||
</script> | ||
|
||
|
||
|
||
|
||
<title>A2SV Hackathon for Africa</title> | ||
<base href="/"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="description" content="A2SVHacks, the first ever Africa-wide hackathon on Generative AI"> | ||
<meta name="keywords" content="A2SVHacks, developers, learn, share, knowledge, award, investment, AI, Africa, University, opportunity"> | ||
<meta name="author" content="A2SV Community"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" /> | ||
<link rel="icon" type="image/x-icon" href="assets/Vector.svg"> | ||
</head> | ||
<body class="bg-black font-poppins"> | ||
<app-root> | ||
<div class="loader bg-black"> | ||
<div class="square" id="sq1"></div> | ||
<div class="square" id="sq2"></div> | ||
<div class="square" id="sq3"></div> | ||
<div class="square" id="sq4"></div> | ||
<div class="square" id="sq5"></div> | ||
<div class="square" id="sq6"></div> | ||
<div class="square" id="sq7"></div> | ||
<div class="square" id="sq8"></div> | ||
<div class="square" id="sq9"></div> | ||
</div> | ||
</app-root> | ||
</body> | ||
<script | ||
async | ||
src="https://www.googletagmanager.com/gtag/js?id=G-7HXJWX81FN" | ||
></script> | ||
<script src="https://www.youtube.com/iframe_api"></script> | ||
<script | ||
async | ||
src="https://www.googletagmanager.com/gtag/js?id=G-45VPZ0Y9FF" | ||
></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
gtag("js", new Date()); | ||
gtag("config", "G-45VPZ0Y9FF"); | ||
</script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
gtag("js", new Date()); | ||
|
||
gtag("config", "G-7HXJWX81FN"); | ||
</script> | ||
|
||
<title>A2SV Hackathon for Africa</title> | ||
<base href="/" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta | ||
name="description" | ||
content="A2SVHacks, the first ever Africa-wide hackathon on Generative AI" | ||
/> | ||
<meta | ||
name="keywords" | ||
content="A2SVHacks, developers, learn, share, knowledge, award, investment, AI, Africa, University, opportunity" | ||
/> | ||
<meta name="author" content="A2SV Community" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" | ||
/> | ||
<link rel="icon" type="image/x-icon" href="assets/Vector.svg" /> | ||
</head> | ||
<body class="bg-black font-poppins"> | ||
<app-root> | ||
<div class="loader bg-black"> | ||
<div class="square" id="sq1"></div> | ||
<div class="square" id="sq2"></div> | ||
<div class="square" id="sq3"></div> | ||
<div class="square" id="sq4"></div> | ||
<div class="square" id="sq5"></div> | ||
<div class="square" id="sq6"></div> | ||
<div class="square" id="sq7"></div> | ||
<div class="square" id="sq8"></div> | ||
<div class="square" id="sq9"></div> | ||
</div> | ||
</app-root> | ||
</body> | ||
</html> | ||
|
||
|