Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added common metatags #86

Merged
merged 3 commits into from
Aug 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 22 additions & 4 deletions frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,23 @@
<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 is a student-friendly platform designed to help IIT Kharagpur students locate empty classrooms during class hours. By providing real-time availability of classrooms across different complexes, Chillzone empowers students to find their perfect study or relaxation spot. Whether you need a quiet place to focus or a space to unwind between classes, Chillzone has you covered."
harshkhandeparkar marked this conversation as resolved.
Show resolved Hide resolved
/>
<meta name="keywords" content="chillzone, iitkgp, nalanda" />
<meta property="og:title" content="ChillZone - IIT Kharagpur" />
harshkhandeparkar marked this conversation as resolved.
Show resolved Hide resolved
<meta
property="og:description"
content="Chillzone is a student-friendly platform designed to help IIT Kharagpur students locate empty classrooms during class hours. By providing real-time availability of classrooms across different complexes, Chillzone empowers students to find their perfect study or relaxation spot. 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 Down Expand Up @@ -44,15 +59,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>