-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./src/assets/icons/icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Knowlyric</title>
<meta name="robots" content="index, follow" />
<meta
name="description"
content="An open-source, full-stack community project inspired by Spotify, providing free access to music streaming and sharing within the open source community."
/>
<meta
name="keywords"
content="open source, community project, Spotify, music streaming, free, full-stack, React app"
/>
<link rel="canonical" href="https://knowlyric.netlify.app/" />
<meta property="og:title" content="Your App Name" />
<meta
property="og:description"
content="An open-source, full-stack community project inspired by Spotify, providing free access to music streaming and sharing within the open source community."
/>
<meta
property="og:image"
content="https://knowlyric.netlify.app/assets/logo.png"
/>
<meta property="og:url" content="https://knowlyric.netlify.app/" />
<link rel="manifest" href="/manifest.json" />
<!-- Font -->
<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=Roboto+Mono:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>