-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!--==================== FAVICON ====================-->
<link rel="icon" type="image/svg+xml" href="/src/assets/img/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--========== CSS ==========-->
<link rel="stylesheet" href="/src/assets/globalStyles.css" />
<!--========== Title ==========-->
<title>Data Fetch</title>
<!--================== LINK THUMBNAIL META TAGS ===================-->
<!-- fb & Whatsapp -->
<meta property="og:site_name" content="ReactTs - DataFetch" />
<meta property="og:title" content="ReactTs - DataFetch" />
<meta property="og:description" content="Using React and TypeScript 👨🏻💻" />
<!-- IMG URL: -->
<meta property="og:image" content="ImgUrlGoesHere" />
<meta property="og:type" content="website" />
<meta property="og:image:type" content="image/jpeg" />
<!-- size up to 300px. Anything above this will not work in WhatsApp -->
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<meta property="og:url" content="AppUrlGoesHere" />
</head>
<body>
<div id="root"></div>
<!--========== Main TSX ==========-->
<script type="module" src="/src/main.tsx"></script>
</body>
</html>