generated from doinel1a/vite-react-js-starter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
100 lines (92 loc) · 3.46 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!doctype html>
<html lang="en">
<head>
<!-- ESSENTIAL -->
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- GENERAL -->
<title>WebGL 3D Product Configurator — JBL Speaker</title>
<meta name="title" content="WebGL 3D Product Configurator — JBL Speaker" />
<meta
name="application-name"
content="WebGL 3D Product Configurator — JBL Speaker"
/>
<meta
name="description"
content="Real-time interactive 3D product configurator developed with React.JS and Sketchfab accessible directly via the web."
/>
<meta
name="keywords"
content="
webgl configurator, web webgl configurator, webgl product configurator, webgl real-time product configurator, webgl real-time configurator, interactive 3d product web configurator, interactive 3d configurator,
3d configurator, 3d web configurator, 3d product configurator, 3d real-time product configurator, 3d real-time configurator, interactive webgl product web configurator, interactive webgl configurator
"
/>
<link rel="manifest" href="/app.webmanifest" />
<link rel="icon" sizes="192x192" href="/favicon/favicon-192.webp" />
<link rel="icon" sizes="512x512" href="/favicon/favicon-512.webp" />
<!-- GOOGLE -->
<meta name="rating" content="General" />
<meta name="robots" content="index,follow" />
<!-- FACEBOOK -->
<meta
property="og:url"
content="https://webgl-speaker-configurator.d1a.app"
/>
<meta property="og:type" content="website" />
<meta
property="og:title"
content="WebGL 3D Product Configurator — JBL Speaker"
/>
<meta
property="og:description"
content="Real-time interactive 3D product configurator developed with React.JS and Sketchfab accessible directly via the web."
/>
<meta property="og:image" content="/og.jpg" />
<!-- TWITTER -->
<meta name="twitter:card" content="summary_large_image" />
<meta
property="twitter:domain"
content="webgl-speaker-configurator.d1a.app"
/>
<meta
property="twitter:url"
content="https://webgl-speaker-configurator.d1a.app"
/>
<meta
name="twitter:title"
content="WebGL 3D Product Configurator — JBL Speaker"
/>
<meta
name="twitter:description"
content="Real-time interactive 3D product configurator developed with React.JS and Sketchfab accessible directly via the web."
/>
<meta name="twitter:image" content="/og.jpg" />
<!-- iOS -->
<link rel="apple-touch-icon" href="/favicon/favicon-512.webp" />
<link rel="mask-icon" href="/favicon/favicon-512.webp" color="black" />
<meta
name="apple-mobile-web-app-title"
content="WebGL 3D Product Configurator — JBL Speaker"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- ANDROID -->
<meta name="theme-color" content="#000" />
<meta name="mobile-web-app-capable" content="yes" />
<meta
name="google-site-verification"
content="43hCqye5FYTS4SnBMPKNFP-wBhfLHwRBykWJF1WJawo"
/>
<script
defer
type="text/javascript"
src="https://static.sketchfab.com/api/sketchfab-viewer-1.12.1.js"
></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>