-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (86 loc) · 4.43 KB
/
index.html
File metadata and controls
96 lines (86 loc) · 4.43 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
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicon and Icons -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<!-- Viewport and Basic Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<!-- Primary Meta Tags -->
<title>Subham Agarwal - Full Stack Developer</title>
<meta name="title" content="Subham Agarwal - Full Stack Developer"/>
<meta name="description" content="Full Stack Developer specializing in Next.js, React, MERN and other modern web technologies. View my projects, skills, and contact me for opportunities." />
<meta name="author" content="Subham Agarwal" />
<meta name="keywords" content="Full Stack Developer, React Developer, Node.js, MongoDB, JavaScript, TypeScript, Web Developer, Software Engineer, Subham Agarwal" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<meta name="revisit-after" content="7 days" />
<!-- Google Search Console Verification -->
<meta name="google-site-verification" content="googleff934b70b909cd23" />
<!-- Canonical URL -->
<link rel="canonical" href="https://subhamagarwal.vercel.app/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://subhamagarwal.vercel.app/" />
<meta property="og:title" content="Subham Agarwal - Full Stack Developer" />
<meta property="og:description" content="Full Stack Developer specializing in Next.js, React, MERN and other modern web technologies. View my projects, skills, and contact me for opportunities." />
<meta property="og:image" content="https://subhamagarwal.vercel.app/image.png" />
<meta property="og:site_name" content="Subham Agarwal Portfolio" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://subhamagarwal.vercel.app/" />
<meta property="twitter:title" content="Subham Agarwal - Full Stack Developer" />
<meta property="twitter:description" content="Full Stack Developer specializing in Next.js, React, MERN and other modern web technologies. View my projects, skills, and contact me for opportunities." />
<meta property="twitter:image" content="https://subhamagarwal.vercel.app/image.png" />
<!-- Schema.org JSON-LD for Person -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Subham Agarwal",
"jobTitle": "Full Stack Developer",
"url": "https://subhamagarwal.vercel.app/",
"sameAs": [
"https://github.com/subhamagarrwal",
"https://www.linkedin.com/in/subham-agarwal2003"
],
"email": "subhamag2003@gmail.com",
"knowsAbout": ["React", "Node.js", "MongoDB", "JavaScript", "TypeScript", "Full Stack Development"],
"description": "Experienced Full Stack Developer specializing in React, Node.js, MongoDB, and modern web technologies."
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
(function() {
try {
var bgVars = localStorage.getItem('portfolio-bg-colors');
if (bgVars) {
var parsed = JSON.parse(bgVars);
for (var key in parsed) {
document.documentElement.style.setProperty(key, parsed[key]);
}
}
var initClass = localStorage.getItem('portfolio-initial-class');
if (initClass) {
var rootDiv = document.querySelector('#root > div');
if (rootDiv && !rootDiv.className.includes(initClass)) {
// Extract non-theme classes and append the saved theme class
var existingClasses = rootDiv.className.split(' ').filter(function(c) {
return !c.startsWith('theme-');
});
existingClasses.push(initClass);
rootDiv.className = existingClasses.join(' ');
}
}
} catch(e) {}
})();
</script>
</body>
</html>