-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (32 loc) · 1.64 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
<!doctype html>
<html lang="en">
<head>
<!-- General -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mood Time App</title>
<!-- Mobile first tags -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Meta descriptions and keywords for SEO -->
<meta name="description" content="The Mood Time App is an event-based playlist generator, think of something that happened to you and a music genre to discover a playlist tailored to that event.">
<meta name="keywords" content="music, playlist, calendar, event, time, mood, emotion, song, track, songs, tracks, acoustic, valence, instrument, dance, danceability, tempo, energy">
<!-- Open Graph for social media sharing -->
<meta property="og:title" content="Mood Time App">
<meta property="og:description" content="The Mood Time App is an event-based playlist generator.">
<meta property="og:image" content="img/image.jpg">
<meta property="og:url" content="https://fac30.github.io/PRO03_Front_Gaj_Jason_Max_Tania/">
<!-- Favicon and branding -->
<link rel="icon" type="image/svg+xml" href="./assets/icons/favicon.svg">
<link rel="apple-touch-icon" href="./assets/icons/favicon.svg">
<meta name="theme-color" content="#ffffff">
<!-- Stylesheets -->
<link rel="stylesheet" href="./src/index.css">
<link rel="stylesheet" href="./src/App.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>