Skip to content

Commit

Permalink
feat: add google analytics verification tags
Browse files Browse the repository at this point in the history
  • Loading branch information
okoyecharles committed May 7, 2024
1 parent 2975f6d commit b86dfc6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
10 changes: 9 additions & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,19 @@
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
/>
<script src="js/navigation.js" defer></script>
<title>About</title>
<meta name="description" content="About the project 'Save a Child'. Our mission and Past travels.">
<meta name="robots" content="index,follow">
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
<script src="js/navigation.js" defer></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9BYF2JZ6SK"></script>
<meta name="google-site-verification" content="z5SFKw4krYcywUCQGVVNYW1F2NpGL-9BNDt0en4iwfM" />
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9BYF2JZ6SK');
</script>
</head>
<body>
<a class="skip-to-content" href="#welcome">
Expand Down
12 changes: 10 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,20 @@
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
/>
<script src="js/navigation.js" defer></script>
<script src="js/index.js" defer></script>
<title>Save A Child</title>
<meta name="description" content="An organization-themed project, dedicated to helping troubled and unfortunate chidren around the world. Developed by Okoye Charles.">
<meta name="robots" content="index,follow">
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
<script src="js/index.js" defer></script>
<script src="js/navigation.js" defer></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9BYF2JZ6SK"></script>
<meta name="google-site-verification" content="z5SFKw4krYcywUCQGVVNYW1F2NpGL-9BNDt0en4iwfM" />
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9BYF2JZ6SK');
</script>
</head>
<body>
<a class="skip-to-content" href="#welcome">
Expand Down
3 changes: 2 additions & 1 deletion js/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
const workCardContainer = document.querySelector('.work-cards');


const workData = [
{
image: './assets/places/burundi.jpg',
image: './assets/places/Burundi.jpg',
header: 'Burundi',
description: 'Empowering children in poverty through food, clothing & education.',
},
Expand Down

0 comments on commit b86dfc6

Please sign in to comment.