-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (84 loc) · 3.64 KB
/
Copy pathindex.html
File metadata and controls
91 lines (84 loc) · 3.64 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" />
<!-- Primary SEO -->
<title>Parth Chittalwar — Software Engineer & Builder</title>
<meta
name="description"
content="Parth Chittalwar — Computer Technology undergraduate building software through C++, DSA, and the MERN stack. Explore projects, skills, and engineering journey."
/>
<meta name="author" content="Parth Chittalwar" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#0A0A0A" />
<link rel="canonical" href="%VITE_SITE_URL%/" />
<!-- Favicons -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Parth Chittalwar" />
<meta property="og:title" content="Parth Chittalwar — Software Engineer & Builder" />
<meta
property="og:description"
content="Computer Technology undergraduate building software through C++, DSA, and the MERN stack. Explore projects, skills, and engineering journey."
/>
<meta property="og:url" content="%VITE_SITE_URL%/" />
<meta property="og:image" content="%VITE_SITE_URL%/og-image.png" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Parth Chittalwar — Software Engineer & Builder" />
<meta
name="twitter:description"
content="Computer Technology undergraduate building software through C++, DSA, and the MERN stack."
/>
<meta name="twitter:image" content="%VITE_SITE_URL%/og-image.png" />
<meta name="twitter:site" content="@itzz_me_parth" />
<meta name="twitter:creator" content="@itzz_me_parth" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
rel="stylesheet"
/>
<!-- Structured data: Person -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Parth Chittalwar",
"url": "%VITE_SITE_URL%/",
"jobTitle": "Computer Technology Student & Software Engineer",
"description": "Computer Technology undergraduate at Priyadarshini College of Engineering, Nagpur, building software through C++, DSA, and the MERN stack.",
"sameAs": [
"https://github.com/ParthChittalwar",
"https://www.linkedin.com/in/parthchittalwar/",
"https://x.com/itzz_me_parth",
"https://www.youtube.com/@parth_chittalwar",
"https://www.instagram.com/parth_chittalwar/"
]
}
</script>
<!-- Set theme before paint to avoid flash-of-wrong-theme. Dark is default. -->
<script>
(function () {
try {
var stored = localStorage.getItem("theme");
if (stored === "light") {
document.documentElement.classList.add("light");
}
} catch (e) {
/* localStorage unavailable — fall back to dark default */
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>