-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
216 lines (190 loc) · 6.57 KB
/
index.html
File metadata and controls
216 lines (190 loc) · 6.57 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>James Westover - Independent Technical Consultant</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: #fff;
min-height: 100vh;
padding: 2rem;
}
.container {
max-width: 1000px;
margin: 0 auto;
}
header {
text-align: center;
margin-bottom: 3rem;
}
.icon {
font-size: 4rem;
margin-bottom: 1rem;
}
h1 {
font-size: 2.8rem;
margin-bottom: 0.5rem;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.tagline {
font-size: 1.4rem;
opacity: 0.95;
margin-bottom: 2rem;
}
.content {
background: rgba(255, 255, 255, 0.15);
border-radius: 16px;
padding: 2.5rem;
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
margin-bottom: 2rem;
}
.content h2 {
margin-bottom: 1.5rem;
font-size: 1.8rem;
border-bottom: 2px solid rgba(255, 255, 255, 0.3);
padding-bottom: 0.5rem;
}
.expertise {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
}
.expertise-card {
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.expertise-card h3 {
font-size: 1.3rem;
margin-bottom: 0.8rem;
color: #a8d0ff;
}
.expertise-card ul {
list-style: none;
line-height: 1.8;
}
.expertise-card li:before {
content: "▹ ";
color: #a8d0ff;
font-weight: bold;
}
.cta {
text-align: center;
padding: 2rem;
}
.contact-button {
display: inline-block;
background: rgba(255, 255, 255, 0.25);
color: #fff;
padding: 1rem 2.5rem;
border-radius: 8px;
text-decoration: none;
font-size: 1.2rem;
font-weight: 600;
border: 2px solid rgba(255, 255, 255, 0.4);
transition: all 0.3s ease;
}
.contact-button:hover {
background: rgba(255, 255, 255, 0.35);
border-color: rgba(255, 255, 255, 0.6);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.expertise {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="icon">💼</div>
<h1>James Westover</h1>
<div class="tagline">Independent Technical Consultant</div>
</header>
<div class="content">
<h2>About</h2>
<p style="line-height: 1.8; font-size: 1.1rem; margin-bottom: 1.5rem;">
Experienced technical consultant specializing in AI/ML infrastructure, API development,
and DevOps automation. I help organizations build scalable, production-ready systems
with modern tools and best practices.
</p>
</div>
<div class="content">
<h2>Areas of Expertise</h2>
<div class="expertise">
<div class="expertise-card">
<h3>AI/ML Infrastructure</h3>
<ul>
<li>ONNX Runtime deployment</li>
<li>Model optimization & conversion</li>
<li>API integration for AI services</li>
<li>Production ML pipelines</li>
</ul>
</div>
<div class="expertise-card">
<h3>API Development</h3>
<ul>
<li>FastAPI & Python backends</li>
<li>RESTful API design</li>
<li>Authentication & rate limiting</li>
<li>Performance optimization</li>
</ul>
</div>
<div class="expertise-card">
<h3>DevOps & Automation</h3>
<ul>
<li>GitHub Actions CI/CD</li>
<li>Ansible configuration management</li>
<li>Cloudflare infrastructure</li>
<li>Monitoring & observability</li>
</ul>
</div>
<div class="expertise-card">
<h3>Mobile Development</h3>
<ul>
<li>React Native applications</li>
<li>iOS app deployment</li>
<li>In-app purchases & subscriptions</li>
<li>App Store automation</li>
</ul>
</div>
</div>
</div>
<div class="content">
<h2>Services Offered</h2>
<ul style="line-height: 2; font-size: 1.1rem; list-style: none;">
<li>✓ Technical architecture design and review</li>
<li>✓ API development and integration</li>
<li>✓ AI/ML model deployment and optimization</li>
<li>✓ DevOps pipeline setup and automation</li>
<li>✓ Code review and best practices consultation</li>
<li>✓ Infrastructure modernization</li>
</ul>
</div>
<div class="cta">
<a href="mailto:james.westover@icloud.com" class="contact-button">Get in Touch</a>
</div>
<div class="content" style="text-align: center; font-size: 0.95rem; opacity: 0.9;">
<p>Based in the United States • Available for remote consulting</p>
</div>
</div>
</body>
</html>