forked from Innovateninjas/Paws-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/logo.png" />
<meta name="theme-color" content="#000000">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Enable PWA on Microsoft browsers -->
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-TileImage" content="/logo.png">
<!-- Prefetch and preconnect Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:400,400i,700,900&display=swap" rel="stylesheet">
<meta name="description" content="Paws">
<link rel="apple-touch-icon" href="/logo.png" />
<!-- Manifest file -->
<link rel="manifest" href="/manifest.json" />
<!-- Title for the app -->
<title>Paws</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!-- Include Vite's HMR script for development -->
<script type="module" src="/src/index.jsx"></script>
</body>
</html>