-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
279 lines (275 loc) · 9.2 KB
/
Copy pathindex.html
File metadata and controls
279 lines (275 loc) · 9.2 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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amit Rintzler - DevOps Maestro</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<!-- Font Awesome for social icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
/* Base styles */
body {
margin: 0;
font-family: 'Inter', sans-serif;
color: #333;
background-color: #fff;
line-height: 1.6;
}
a {
color: #007acc;
text-decoration: none;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 40px 20px;
}
h1, h2, h3 {
margin-top: 0;
color: #333;
font-family: 'Poppins', sans-serif;
}
/* Hero styles */
.hero {
background: linear-gradient(135deg, rgba(79, 70, 229, 0.7), rgba(147, 51, 234, 0.7)),
url('images/m4-mac.svg');
background-attachment: fixed;
background-size: cover;
background-position: center;
color: #fff;
padding: 80px 20px;
}
.hero-content {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 20px;
}
.hero-text {
max-width: 700px;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 10px;
color: #ffffff;
}
.hero h2 {
font-size: 1.5rem;
margin-bottom: 20px;
font-weight: 600;
}
.tagline {
margin-bottom: 20px;
}
.typewriter {
overflow: hidden;
white-space: nowrap;
border-right: 0.15em solid #fff;
width: 60ch;
animation: typing 4s steps(60, end) forwards, blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0; }
to { width: 60ch; }
}
@keyframes blink-caret {
from, to { border-color: transparent; }
50% { border-color: #fff; }
}
.cta-button {
display: inline-block;
padding: 12px 32px;
background: #fff;
color: #9333ea;
border-radius: 50px;
font-weight: 600;
margin-top: 10px;
transition: all 0.3s ease;
}
.cta-button:hover {
background: #9333ea;
color: #fff;
transform: scale(1.05);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.social-links a {
display: inline-block;
color: #fff;
margin: 0 10px;
font-size: 1.3rem;
transition: all 0.3s ease;
}
.social-links a:hover {
transform: scale(1.05);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
/* Section styles */
section {
margin: 60px 0;
}
section h2 {
font-size: 2rem;
text-align: center;
margin-bottom: 30px;
color: #764ba2;
}
.about ul {
list-style: none;
padding: 0;
}
.about li {
margin-bottom: 15px;
padding-left: 25px;
position: relative;
}
.about li::before {
content: '\f00c';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
left: 0;
color: #764ba2;
}
.projects .project {
background: #f7f7f7;
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
}
.projects .project h3 {
margin-top: 0;
}
/* Contact form styles */
.contact form {
max-width: 600px;
margin: 0 auto;
display: flex;
flex-direction: column;
}
.contact label {
margin-bottom: 5px;
font-weight: 600;
}
.contact input,
.contact textarea {
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
font: inherit;
}
.contact textarea {
min-height: 120px;
resize: vertical;
}
.contact button {
background: #9333ea;
color: #fff;
border: none;
padding: 12px;
border-radius: 4px;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
}
.contact button:hover {
background: #7e22ce;
transform: scale(1.05);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
/* Footer styles */
footer {
background: #f0f0f0;
text-align: center;
padding: 20px 0;
font-size: 0.9rem;
}
footer .social-links a {
display: inline-block;
color: #9333ea;
margin: 0 10px;
font-size: 1.3rem;
transition: all 0.3s ease;
}
footer .social-links a:hover {
transform: scale(1.05);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
/* Responsive styles */
@media (max-width: 768px) {
.hero {
background-attachment: scroll;
}
.hero-content {
flex-direction: column;
text-align: center;
}
}
</style>
</head>
<body>
<!-- Hero Section -->
<header class="hero">
<div class="container hero-content">
<div class="hero-text">
<h1>Amit Rintzler</h1>
<p class="tagline typewriter">DevOps Maestro | Architecting Modern CI/CD & Cloud Platforms</p>
<a href="#contact" class="cta-button">Let's Connect</a>
<div class="social-links">
<a href="https://www.linkedin.com/in/amitrintzler/" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/AmitRintzler" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</header>
<main>
<!-- About Section -->
<section id="about" class="about container">
<h2>About Me</h2>
<ul>
<li>DevOps and QA Manager with extensive experience leading global teams in delivering scalable solutions.</li>
<li>Expert in CI/CD and cloud-native architectures, with a track record of accelerating delivery pipelines.</li>
<li>Advocates AI-driven automation for improving software delivery and troubleshooting processes.</li>
<li>Active in DevOps communities; shares insights and learning resources on LinkedIn and Twitter (e.g., daily DevOps quizzes, tutorials).</li>
</ul>
</section>
<!-- Projects Section -->
<section id="projects" class="projects container">
<h2>Projects</h2>
<div class="project">
<h3>TradeScore Assistant</h3>
<p>An AI-powered trading tool that provides stock scores, real-time insights and options strategies. Built using Base44's AI platform in 2025.</p>
</div>
<div class="project">
<h3>AI Agents Hub</h3>
<p>Find my latest AI agents and resources at <a href="https://friendly-agent-share.lovable.app/">friendly-agent-share.lovable.app</a>. The hub is updated periodically.</p>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact container">
<h2>Contact</h2>
<p>Feel free to reach out using the form below.</p>
<form action="mailto:amitrintzler@gmail.com" method="post" enctype="text/plain">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Your Name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Your Email" required>
<label for="message">Message</label>
<textarea id="message" name="message" placeholder="Your Message" required></textarea>
<button type="submit">Submit</button>
</form>
</section>
</main>
<!-- Footer Section -->
<footer>
<p>© 2025 Amit Rintzler</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/amitrintzler/" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/AmitRintzler" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
</div>
</footer>
</body>
</html>