-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (51 loc) · 1.92 KB
/
index.html
File metadata and controls
61 lines (51 loc) · 1.92 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=5, user-scalable=yes"
/>
<meta name="robots" content="noindex, nofollow" />
<!-- Brief description of the page (important for SEO, even if noindex is applied) -->
<meta
name="description"
content="Admin dashboard or other Projects for managing' operations."
/>
<!-- Name of the author or creator of the page -->
<meta name="author" content="Abubakir Shavkatov (Warnigo)" />
<!-- Open Graph tags to enhance link previews on social media platforms -->
<meta property="og:title" content="react boilerplate" />
<meta
property="og:url"
content="https://github.com/warnigo/react-boilerplate"
/>
<meta property="og:image" content="https://warnigo.uz/avatar.webp" />
<!-- iOS-specific settings for web app behavior and title -->
<meta name="apple-mobile-web-app-title" content="React Boilerplate" />
<!-- Sets the theme color for browsers, especially on mobile devices -->
<meta name="theme-color" content="#ffffff" />
<!-- Link to various favicon files for different platforms and devices -->
<link
rel="icon"
type="image/png"
href="/favicons/favicon-48x48.png"
sizes="48x48"
/>
<link rel="icon" type="image/svg+xml" href="/favicons/favicon.svg" />
<link rel="shortcut icon" href="/favicons/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicons/apple-touch-icon.png"
/>
<link rel="manifest" href="/favicons/site.webmanifest" />
<!-- Page title that appears on the browser tab -->
<title>React Boilerplate</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/app/main.tsx"></script>
</body>
</html>