-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (123 loc) · 5.18 KB
/
index.html
File metadata and controls
131 lines (123 loc) · 5.18 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png"
/>
<link rel="manifest" href="favicon/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Isaac Poole - Software Developer | Portfolio</title>
<meta
name="description"
content="Isaac Poole is a passionate software developer specializing in web technologies, full-stack development, and creating robust, scalable applications. Explore his portfolio and blog for insights into modern software engineering."
/>
<meta
name="keywords"
content="Isaac Poole, software developer, web development, full-stack, React, Node.js, JavaScript, TypeScript, portfolio, blog, programming"
/>
<link rel="canonical" href="https://isfopo.github.io/aobut/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://isfopo.github.io/aobut/" />
<meta
property="og:title"
content="Isaac Poole - Software Developer | Portfolio"
/>
<meta
property="og:description"
content="Isaac Poole is a passionate software developer specializing in web technologies, full-stack development, and creating robust, scalable applications. Explore his portfolio and blog for insights into modern software engineering."
/>
<meta
property="og:image"
content="https://isfopo.github.io/aobut/og-image.jpg"
/>
<!-- Replace with an actual image URL -->
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://isfopo.github.io/aobut/"
/>
<meta
property="twitter:title"
content="Isaac Poole - Software Developer | Portfolio"
/>
<meta
property="twitter:description"
content="Isaac Poole is a passionate software developer specializing in web technologies, full-stack development, and creating robust, scalable applications. Explore his portfolio and blog for insights into modern software engineering."
/>
<meta
property="twitter:image"
content="https://isfopo.github.io/aobut/mountain_protrait.jpg"
/>
<!-- Replace with an actual image URL -->
<!-- Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person"
"name": "Isaac Poole",
"url": "https://isfopo.github.io/aobut/",
"sameAs": [
"https://www.github.com/isfopo",
"https://www.linkedin.com/in/isaacpoole/",
"https://these-elements-combined.bandcamp.com/album/we-were-looking-for-transendence-in-the-eyes-of-our-lovers/"
],
"jobTitle": "Full-Stack Software Developer",
"image": "https://isfopo.github.io/aobut/profile.jpg",
"description": "Isaac Poole is a passionate software developer specializing in web technologies, full-stack development, and creating robust, scalable applications. Explore his portfolio and blog for insights into modern software engineering."
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Isaac Poole - Software Developer Portfolio",
"url": "https://isfopo.github.io/aobut/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://isfopo.github.io/aobut/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<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=Jost:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
</head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-B67DN5P7B2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-B67DN5P7B2");
</script>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>