-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
33 lines (30 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/kurizu.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kurizu</title>
<!-- Meta tags for SEO -->
<meta name="google-site-verification" content="7UyFq6rH-vMnRYw_3X1Ac8Rf015Xkw0T9njJBl7CImQ" />
<meta name="description" content="A Discord themed website built using React & Vite" />
<meta name="keywords" content="react, theme, website, discord, portfolio-website, vite" />
<meta name="author" content="Kurizu" />
<!-- Open Graph tags for social media sharing -->
<meta property="og:title" content="Kurizu" />
<meta property="og:description" content="A Discord themed website built using React & Vite" />
<meta property="og:image" content="https://cdn.discordapp.com/attachments/977949070893125632/1130465364946468937/site.png" />
<meta property="og:url" content="https://kurizu.vercel.app/" />
<meta property="og:type" content="website" />
<!-- Twitter Card tags for Twitter sharing -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Kurizu" />
<meta name="twitter:description" content="A Discord themed website built using React & Vite" />
<meta name="twitter:image" content="https://cdn.discordapp.com/attachments/977949070893125632/1130465364946468937/site.png" />
<meta name="twitter:site" content="@KurizuTaz" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>