-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (83 loc) · 2.76 KB
/
index.html
File metadata and controls
91 lines (83 loc) · 2.76 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Animesh Maity - Portfolio | The Ani-Lytic Arc</title>
<meta
name="description"
content="The Ani-Lytic Arc — where Data meets Design. Portfolio of Animesh Maity, Creative Insights Analyst."
/>
<meta name="theme-color" content="#008080" />
<link
rel="icon"
type="image/x-icon"
href="/assets/brand-assets/favicons/favicons-light-theme/favicon.ico"
media="(prefers-color-scheme: light)"
/>
<link
rel="icon"
type="image/x-icon"
href="/assets/brand-assets/favicons/favicons-dark-theme/favicon-dark.ico"
media="(prefers-color-scheme: dark)"
/>
<link
rel="shortcut icon"
type="image/x-icon"
href="/assets/brand-assets/favicons/favicons-light-theme/favicon.ico"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/brand-assets/favicons/favicons-light-theme/apple-touch-icon.png"
media="(prefers-color-scheme: light)"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/brand-assets/favicons/favicons-light-theme/favicon-32x32.png"
media="(prefers-color-scheme: light)"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/brand-assets/favicons/favicons-light-theme/favicon-16x16.png"
media="(prefers-color-scheme: light)"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/brand-assets/favicons/favicons-dark-theme/apple-touch-icon-dark.png"
media="(prefers-color-scheme: dark)"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/brand-assets/favicons/favicons-dark-theme/favicon-32x32-dark.png"
media="(prefers-color-scheme: dark)"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/brand-assets/favicons/favicons-dark-theme/favicon-16x16-dark.png"
media="(prefers-color-scheme: dark)"
/>
<link rel="manifest" href="/site.webmanifest" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./src/index.css" />
</head>
<body
class="bg-[var(--color-bg-primary)] text-[var(--color-text-primary)] font-body antialiased transition-colors duration-500"
>
<div id="root"></div>
<script type="module" src="./src/main.jsx"></script>
<script src="https://platform.linkedin.com/in.js" type="text/javascript" async defer></script>
</body>
</html>