-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (38 loc) · 2.03 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
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Make fonts work offline: https://vite-pwa-org.netlify.app/workbox/generate-sw.html -->
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="preconnect" crossorigin="anonymous" href="https://fonts.gstatic.com">
<!-- Favicons inspired from: https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs -->
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="mask-icon" href="/mask-icon.svg" color="#000000">
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- PWA minimum: https://vite-pwa-org.netlify.app/guide/pwa-minimal-requirements.html -->
<meta property="description" content="Interactive presentations, for free.">
<meta name="theme-color" content="#000000">
<!-- Inspired from: https://css-tricks.com/essential-meta-tags-social-media/#aa-final-markup -->
<!-- Essential META Tags -->
<meta property="og:title" content="Slidr.app">
<!-- <meta property="og:type" content="article" /> -->
<!-- <meta property="og:image" content="http://euro-travel-example.com/thumbnail.jpg"> -->
<!-- <meta property="og:url" content="http://euro-travel-example.com/index.htm"> -->
<!-- <meta name="twitter:card" content="summary_large_image"> -->
<!-- Non-Essential, But Recommended -->
<meta property="og:description" content="Interactive presentations, for free.">
<meta property="og:site_name" content="Slidr.app">
<!-- <meta name="twitter:image:alt" content="Alt text for image"> -->
<!-- Non-Essential, But Required for Analytics -->
<!-- <meta property="fb:app_id" content="your_app_id" /> -->
<!-- <meta name="twitter:site" content="@website-username"> -->
<title>Present</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>