-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (28 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="[Enter your name]" />
<meta name="description" content="Vue 3 based template, complete with routing, state management, and more!" />
<!-- META OG TAGS -->
<meta property="og:title" content="TailVue" />
<meta property="og:url" content="https://tailview.netlify.app" />
<meta property="og:image" content="./tailvue.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Vue 3 based template, complete with routing, state management, and more!" />
<!-- END OF META OG TAGS -->
<title>TailVue</title>
</head>
<body class="dark:bg-gray-900">
<div id="app"></div>
<noscript>
<div>Please enable JavaScript to use this application.</div>
</noscript>
<script type="module" src="/src/main.js"></script>
</body>
</html>