-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
139 lines (133 loc) · 5.02 KB
/
index.html
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
132
133
134
135
136
137
138
139
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Light Mode Theme Color -->
<meta
name="theme-color"
content="#f2577d"
media="(prefers-color-scheme: light)"
/>
<!-- Dark Mode Theme Color (darkened version of #f2577d) -->
<meta
name="theme-color"
content="#c44566"
media="(prefers-color-scheme: dark)"
/>
<meta property="og:type" content="profile" />
<meta property="og:title" content="Stanley Masinde" />
<meta property="og:url" content="https://stanleymasinde.com" />
<meta
property="og:image"
content="https://res.cloudinary.com/dwewc6ycp/image/upload/v1684760968/20220727_151732_1_loikmr.jpg"
/>
<meta
property="og:description"
content="Stanley Masinde, software developer & educator, builds custom apps & websites. Get user-friendly solutions & expert tech guidance - contact him today!"
/>
<meta property="profile:first_name" content="Stanley" />
<meta property="profile:last_name" content="Masinde" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="stanleymasinde.com" />
<meta property="twitter:url" content="https://stanleymasinde.com" />
<meta name="twitter:title" content="Stanley Masinde - Software Developer" />
<meta
name="twitter:description"
content="Experienced Software Developer specializing in building scalable web applications."
/>
<meta
name="twitter:image"
content="https://res.cloudinary.com/dwewc6ycp/image/upload/v1684760968/20220727_151732_1_loikmr.jpg"
/>
<meta
name="twitter:description"
content="Stanley Masinde, software developer & educator, builds custom apps & websites. Get user-friendly solutions & expert tech guidance - contact him today!"
/>
<meta
name="twitter:image"
content="https://res.cloudinary.com/dwewc6ycp/image/upload/v1684760968/20220727_151732_1_loikmr.jpg"
/>
<meta name="twitter:image:alt" content="A photo of Stanley Masinde" />
<meta property="profile:username" content="StanleyMasinde_" />
<meta
name="description"
content="Stanley Masinde, software developer & educator, builds custom apps & websites. Get user-friendly solutions & expert tech guidance - contact him today!"
/>
<title>Stanley Masinde</title>
<script src="/main.js" type="module"></script>
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Person",
"name": "Stanley Masinde",
"birthDate": "1996-12-15",
"email": "mailto:[email protected]",
"url": "https://stanleymasinde.com",
"gender": "Male",
"image": "https://res.cloudinary.com/dwewc6ycp/image/upload/v1684760968/20220727_151732_1_loikmr.jpg",
"sameAs": [
"https://twitter.com/StanleyMasinde_",
"https://x.com/StanleyMasinde_",
"https://www.youtube.com/@Stanleymasinde",
"https://linkedin.com/in/stanley-masinde",
"https://github.com/stanleymasinde",
"https://stanleymasinde.medium.com"
],
"jobTitle": "Software Engineer",
"worksFor": {
"@type": "Organization",
"name": "Producers Direct",
"url": "https://producersdirect.org"
},
"description": "Software Engineer with experience in building scalable web applications and a passion for technology.",
"knowsAbout": [
"Software Development",
"Web Applications",
"Rust Programming",
"Cloud Computing"
],
"nationality": {
"@type": "Country",
"name": "Kenya"
},
"homeLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Nairobi",
"addressCountry": "Kenya"
}
},
"knowsLanguage": ["English", "Swahili"],
"hasOccupation": {
"@type": "Occupation",
"name": "Software Engineer",
"sameAs": "https://github.com/stanleymasinde"
}
}
</script>
</head>
<body class="bg-gray-100 dark:bg-gray-900 dark:text-white">
<main class="grid h-[95vh] place-items-center">
<div class="grid w-3/4 gap-2 md:w-1/4">
<div class="flex justify-center">
<img
src="/hero.webp"
alt="Picture of Stanley Masinde"
class="aspect-square h-40 rounded-full border-2"
/>
</div>
<div class="mb-5 text-center">
<h1 class="text-2xl">Hi there, thank you for stopping by.</h1>
</div>
<div id="links" class="flex flex-col gap-1"></div>
</div>
</main>
<footer class="h-[5vh] text-center">
<p>Made with love ❤️ by Stanley Masinde.</p>
<p class="text-xs">© <span id="year"></span></p>
</footer>
</body>
</html>