Skip to content

Commit f1607b6

Browse files
committed
feat: Add SEO and Open Graph meta tags
Adds SEO and Open Graph meta tags to improve search engine optimization and social media sharing.
1 parent 130637e commit f1607b6

1 file changed

Lines changed: 78 additions & 2 deletions

File tree

index.html

Lines changed: 78 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
65
<link
76
rel="apple-touch-icon"
87
sizes="180x180"
@@ -23,7 +22,84 @@
2322
<link rel="manifest" href="favicon/site.webmanifest" />
2423

2524
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
26-
<title>Isaac Poole - Software Developer</title>
25+
<title>Isaac Poole - Software Developer | Portfolio</title>
26+
<meta
27+
name="description"
28+
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."
29+
/>
30+
<meta
31+
name="keywords"
32+
content="Isaac Poole, software developer, web development, full-stack, React, Node.js, JavaScript, TypeScript, portfolio, blog, programming"
33+
/>
34+
<link rel="canonical" href="https://isfopo.github.io/aobut/" />
35+
36+
<!-- Open Graph / Facebook -->
37+
<meta property="og:type" content="website" />
38+
<meta property="og:url" content="https://isfopo.github.io/aobut/" />
39+
<meta
40+
property="og:title"
41+
content="Isaac Poole - Software Developer | Portfolio"
42+
/>
43+
<meta
44+
property="og:description"
45+
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."
46+
/>
47+
<meta
48+
property="og:image"
49+
content="https://isfopo.github.io/aobut/og-image.jpg"
50+
/>
51+
<!-- Replace with an actual image URL -->
52+
53+
<!-- Twitter -->
54+
<meta property="twitter:card" content="summary_large_image" />
55+
<meta
56+
property="twitter:url"
57+
content="https://isfopo.github.io/aobut/"
58+
/>
59+
<meta
60+
property="twitter:title"
61+
content="Isaac Poole - Software Developer | Portfolio"
62+
/>
63+
<meta
64+
property="twitter:description"
65+
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."
66+
/>
67+
<meta
68+
property="twitter:image"
69+
content="https://isfopo.github.io/aobut/mountain_protrait.jpg"
70+
/>
71+
<!-- Replace with an actual image URL -->
72+
73+
<!-- Schema Markup -->
74+
<script type="application/ld+json">
75+
{
76+
"@context": "https://schema.org",
77+
"@type": "Person",
78+
"name": "Isaac Poole",
79+
"url": "https://isfopo.github.io/aobut/",
80+
"sameAs": [
81+
"https://www.github.com/isfopo",
82+
"https://www.linkedin.com/in/isaacpoole/",
83+
"https://these-elements-combined.bandcamp.com/album/we-were-looking-for-transendence-in-the-eyes-of-our-lovers/"
84+
],
85+
"jobTitle": "Full-Stack Software Developer",
86+
"image": "https://isfopo.github.io/aobut/profile.jpg",
87+
"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."
88+
}
89+
</script>
90+
<script type="application/ld+json">
91+
{
92+
"@context": "https://schema.org",
93+
"@type": "WebSite",
94+
"name": "Isaac Poole - Software Developer Portfolio",
95+
"url": "https://isfopo.github.io/aobut/",
96+
"potentialAction": {
97+
"@type": "SearchAction",
98+
"target": "https://isfopo.github.io/aobut/?q={search_term_string}",
99+
"query-input": "required name=search_term_string"
100+
}
101+
}
102+
</script>
27103

28104
<link rel="preconnect" href="https://fonts.googleapis.com" />
29105
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />

0 commit comments

Comments
 (0)