-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
51 lines (44 loc) · 2.07 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
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="en">
<head>
<!-- Metadata dasar -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="SinThink Ai - Free AI tools for modern applications that enhance productivity and innovation." />
<meta name="keywords" content="AI tools, artificial intelligence, SinThink AI, productivity tools, innovation tools, machine learning" />
<meta name="author" content="Riswan Nopiyar" />
<!-- SEO Open Graph / Social Sharing -->
<meta property="og:title" content="SinThink AI - Free AI Tools" />
<meta property="og:description" content="Discover SinThink AI, the ultimate platform for cutting-edge AI tools that enhance productivity and innovation." />
<meta property="og:image" content="/Thumbnail.png" />
<meta property="og:url" content="https://sinthink-ai.vercel.app" />
<meta property="og:type" content="website" />
<!-- Twitter Cards Metadata -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="SinThink AI - Free AI Tools" />
<meta name="twitter:description" content="Explore SinThink AI and boost your productivity with innovative AI tools." />
<meta name="twitter:image" content="/Thumbnail.png" />
<meta name="twitter:site" content="" />
<!-- Canonical Link -->
<link rel="canonical" href="https://sinthink-ai.vercel.app" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<!-- Page Title -->
<title>SinThink AI - Free AI Tools for Modern Applications</title>
<!-- Robots -->
<meta name="robots" content="index, follow" />
<script>
const theme = localStorage.getItem('theme') || 'light';
if (theme === 'dark') {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.remove('dark');
}
</script>
</head>
<body>
<div id="root"></div>
<!-- Main JavaScript -->
<script type="module" src="/src/main.tsx"></script>
</body>
</html>