-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 1.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
<!doctype html>
<html lang="en">
<head>
<title>Simple Blog</title>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="This is a blog application built using React, TypeScript, Vite and GraphQL." />
<!-- OG Tag -->
<meta property="og:title" content="Simple Blog" />
<meta property="og:description" content="Blog application built using React, TypeScript, Vite and GraphQL." />
<meta property="og:url" content="https://www.xiubin.dev" />
<meta property="og:type" content="website" />
<!-- Twitter Card Tag -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Pomerium">
<meta name="twitter:url" content="https://www.xiubin.dev" />
<meta name="twitter:description" content="Blog application built using React, TypeScript, Vite and GraphQL.">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>