-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (78 loc) · 3.8 KB
/
index.html
File metadata and controls
86 lines (78 loc) · 3.8 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Performance and Security -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Resource Hints for Performance -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://www.googletagmanager.com" />
<link rel="dns-prefetch" href="//www.google-analytics.com" />
<!-- Favicon and App Icons -->
<link rel="icon" type="image/svg+xml" href="/hp_logo2_white.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/hp_logo2_white.svg" />
<link rel="manifest" href="/site.webmanifest" />
<!-- SEO Meta Tags -->
<meta name="description" content="Henry Pendleton - Full Stack Software Engineer specializing in React, TypeScript, and modern web technologies. View my portfolio, projects, and contact information." />
<meta name="keywords" content="Henry Pendleton, software engineer, full stack developer, React developer, TypeScript, JavaScript, portfolio, web development, frontend, backend" />
<meta name="author" content="Henry Pendleton" />
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta name="revisit-after" content="7 days" />
<meta name="language" content="English" />
<meta name="theme-color" content="#3b82f6" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.henrypendleton.com" />
<meta property="og:title" content="Henry Pendleton - Full Stack Software Engineer" />
<meta property="og:description" content="Full Stack Software Engineer specializing in React, TypeScript, and modern web technologies. View my portfolio and projects." />
<meta property="og:image" content="https://www.henrypendleton.com/og-image.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="Henry Pendleton Portfolio" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://www.henrypendleton.com" />
<meta name="twitter:title" content="Henry Pendleton - Full Stack Software Engineer" />
<meta name="twitter:description" content="Full Stack Software Engineer specializing in React, TypeScript, and modern web technologies." />
<meta name="twitter:image" content="https://www.henrypendleton.com/og-image.jpg" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Henry Pendleton",
"jobTitle": "Full Stack Software Engineer",
"url": "https://www.henrypendleton.com",
"sameAs": [
"https://linkedin.com/in/henrypendleton",
"https://github.com/henrypendleton"
],
"knowsAbout": [
"React",
"TypeScript",
"JavaScript",
"Full Stack Development",
"Web Development",
"Frontend Development",
"Backend Development"
]
}
</script>
<title>Henry Pendleton</title>
<!-- Google Analytics GA4 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MV1MBK53X6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-MV1MBK53X6');
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>