-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (107 loc) · 5.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1RS27PTKSG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-1RS27PTKSG');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Bobby Bonestell: Software Engineering — Fintech & Payments">
<meta name="author" content="Bobby Bonestell">
<meta property="og:title" content="Bobby Bonestell">
<meta property="og:type" content="website">
<meta property="og:url" content="https://rbonestell.com/">
<meta property="og:image" content="https://www.gravatar.com/avatar/fa08a07ba7197708dda9ed476e9a1531?s=200">
<meta property="og:description" content="Bobby Bonestell: Software Engineering — Fintech & Payments">
<meta property="og:site_name" content="Bobby Bonestell">
<title>Bobby Bonestell</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link rel="shortcut icon" sizes="196x196" href="favicon.png">
<link rel="apple-touch-icon" href="favicon.png">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/retroify.js/out/retroify.min.js"></script>
<link href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Bobby Bonestell",
"url": "https://rbonestell.com/",
"image": "https://www.gravatar.com/avatar/fa08a07ba7197708dda9ed476e9a1531?s=200",
"sameAs": [
"https://linkedin.com/in/rbonestell",
"https://github.com/rbonestell",
"https://stackoverflow.com/users/623487/rbonestell"
],
"jobTitle": "Director of Software Engineering",
"worksFor": {
"@type": "Organization",
"name": "Preczn"
},
"description": "Modernizing the fintech technical landscape."
}
</script>
<style>
.glass-card {
backdrop-filter: blur(16px) saturate(180%);
background-color: rgba(17, 24, 39, 0.75);
border: 1px solid rgba(255, 255, 255, 0.1);
}
</style>
<script>
const code = [38, 38, 40, 40, 37, 39, 37, 39, 66, 65];
let codeIndex = 0;
document.addEventListener('keydown', (event) => {
if (event.keyCode === code[codeIndex]) {
codeIndex++;
if (codeIndex === code.length) {
enable8BitMode();
codeIndex = 0;
}
} else {
codeIndex = 0;
}
});
function enable8BitMode() {
retroify.toggle();
}
</script>
</head>
<body class="bg-gradient-to-br from-gray-900 via-blue-900 to-gray-800 min-h-screen flex items-center justify-center p-8">
<div
class="max-w-2xl w-full glass-card rounded-2xl shadow-2xl shadow-blue-900/50 p-10 flex flex-col items-center sm:flex-row sm:items-start backdrop-blur-lg">
<img class="w-40 h-40 rounded-2xl sm:mr-8 mb-6 sm:mb-0 shadow-md transform transition-transform duration-500 hover:scale-105 border-4 border-blue-400"
src="https://www.gravatar.com/avatar/fa08a07ba7197708dda9ed476e9a1531?s=200" alt="Bobby Bonestell">
<div class="text-center sm:text-left">
<h1 class="text-5xl font-black mb-3 tracking-tight text-white">
BOBBY<br />
<span class="text-blue-400">BONESTELL</span>
</h1>
<h2 class="text-xl text-gray-300 mb-3 font-medium">Software Engineering — Fintech & Payments</h2>
<p class="text-gray-300 mb-6 font-light">Modernizing the fintech technical landscape.</p>
<div class="grid grid-cols-3 gap-6 mt-4">
<a title="LinkedIn" href="https://linkedin.com/in/rbonestell"
class="p-3 text-xl text-gray-300 hover:text-white bg-gray-700/50 hover:bg-blue-500 rounded-xl transition-all duration-300 hover:shadow-lg hover:shadow-blue-500/50 text-center btn">
<i class="fab fa-linkedin-in"></i>
</a>
<a title="GitHub" href="https://github.com/rbonestell"
class="p-3 text-xl text-gray-300 hover:text-white bg-gray-700/50 hover:bg-gray-950 rounded-xl transition-all duration-300 hover:shadow-lg hover:shadow-gray-950/50 text-center btn">
<i class="fab fa-github"></i>
</a>
<a title="StackOverflow" href="https://stackoverflow.com/users/623487/rbonestell"
class="p-3 text-xl text-gray-300 hover:text-white bg-gray-700/50 hover:bg-orange-500 rounded-xl transition-all duration-300 hover:shadow-lg hover:shadow-orange-500/50 text-center btn">
<i class="fab fa-stack-overflow"></i>
</a>
</div>
</div>
</div>
</body>
</html>