Skip to content

Commit

Permalink
Merge pull request #86 from Siddharth-Nema/metatags
Browse files Browse the repository at this point in the history
Added common metatags
  • Loading branch information
harshkhandeparkar authored Aug 9, 2024
2 parents bb8dfbd + 49cc4bd commit f0aefa6
Showing 1 changed file with 27 additions and 5 deletions.
32 changes: 27 additions & 5 deletions frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,27 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Chillzone provides a list of unoccupied rooms in Nalanda or Vikramshila at your chosen time. No more aimless wandering around. Whether you need a quiet place to focus or a space to unwind between classes, Chillzone has you covered.
"
/>
<meta
name="keywords"
content="chillzone, iitkgp, nalanda, vikramshila, chill, classrooms"
/>
<meta property="og:title" content="Chillzone - IIT Kharagpur" />
<meta
property="og:description"
content="Chillzone provides a list of unoccupied rooms in Nalanda or Vikramshila at your chosen time. No more aimless wandering around. Whether you need a quiet place to focus or a space to unwind between classes, Chillzone has you covered."
/>
<!-- <meta property="og:image" content="imgurl" /> -->
<meta property="og:url" content="https://chill.metakgp.org/" />
<!--
manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
Expand All @@ -28,7 +47,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>ChillZone - IIT Kharagpur</title>
<title>Chillzone - IIT Kharagpur</title>
</head>
<body>
<noscript> You need to enable JavaScript to run this app. </noscript>
Expand All @@ -44,15 +63,18 @@
To create a production bundle, use `npm run build` or `yarn build`.
-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-40518182-16"></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-40518182-16"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag('js', new Date());

gtag("config", "UA-40518182-16");
gtag('config', 'UA-40518182-16');
</script>
</body>
</html>

0 comments on commit f0aefa6

Please sign in to comment.