-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
index.html
48 lines (45 loc) · 1.43 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>
<!-- UTF-8 Support -->
<meta charset="UTF-8" />
<!-- IE Compatibility -->
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Theme Color -->
<meta name="theme-color" content="#050816" />
<!-- Description -->
<meta
name="description"
content="Modern 3D Portfolio using React, Three.js and Typescript"
/>
<!-- Keywords -->
<meta
name="keywords"
content="reactjs, react, porfolio-app, three-js, modern-ui/ux, js, javascript, html, css, tailwindcss"
/>
<!-- Author -->
<meta name="author" content="Sanidhya Kr. Verma" />
<link rel="author" href="https://github.com/sanidhyy" />
<!-- Icon -->
<link rel="icon" type="image/svg+xml" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/favicon16.png" type="image/png" sizes="16x16" />
<link rel="icon" href="/favicon32.png" type="image/png" sizes="32x32" />
<link
rel="apple-touch-icon"
href="/apple-touch-icon.png"
type="image/png"
sizes="180x180"
/>
<!-- Color Schema -->
<meta name="color-scheme" content="dark" />
<!-- Title -->
<title>Shubham | Portfolio</title>
</head>
<body>
<noscript></noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>