-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 2.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html lang="en" class="antialiased">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<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:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<meta name="author" content="Ahmed Kinan Ghbash">
<meta name="description" content="A powerful dashboard that displays real-time metrics for your website. Customize your chart layouts and preferences for a personalized experience.">
<meta name="keywords" content="dashboard, real-time metrics, website analytics, customizable charts">
<!-- Open Graph / Facebook -->
<meta property="og:title" content="Chart Hive">
<meta property="og:description" content="A powerful dashboard that displays real-time metrics for your website. Customize your chart layouts and preferences for a personalized experience.">
<meta property="og:url" content="https://kinangh98.github.io/chart-hive/">
<meta property="og:type" content="website">
<meta property="og:image" content="https://kinangh98.github.io/chart-hive/social-media-image.jpg">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Chart Hive">
<meta name="twitter:description" content="A powerful dashboard that displays real-time metrics for your website. Customize your chart layouts and preferences for a personalized experience.">
<meta name="twitter:image" content="https://kinangh98.github.io/chart-hive/social-media-image.jpg">
<meta name="twitter:url" content="https://kinangh98.github.io/chart-hive/">
<link rel="icon" href="./favicon.ico">
<title>Chart Hive</title>
<script>
if ('chartHiveTheme' in localStorage && localStorage.chartHiveTheme === 'dark')
document.documentElement.classList.add('dark')
else
document.documentElement.classList.remove('dark')
</script>
</head>
<body>
<div id="root" class="bg-gray-100 dark:bg-neutral-900"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>