brendan.greenlee.website/index.html
2026-08-12 15:59:07 +00:00

38 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brendan Greenlee</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #0f0f0f; color: #e0e0e0;
display: flex; flex-direction: column; align-items: center; justify-content: center;
min-height: 100vh; padding: 2rem;
}
.container { max-width: 640px; text-align: center; }
h1 { font-size: 2.5rem; font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
p { font-size: 1.1rem; line-height: 1.6; color: #a0a0a0; margin-bottom: 1rem; }
.divider { width: 60px; height: 2px; background: #333; margin: 1.5rem auto; }
.links { margin-top: 1.5rem; }
.links a { color: #6ea8fe; text-decoration: none; font-size: 0.95rem; margin: 0 0.75rem; }
.links a:hover { text-decoration: underline; }
.tag { font-size: 0.85rem; color: #666; margin-top: 2rem; }
</style>
</head>
<body>
<div class="container">
<h1>Brendan Greenlee</h1>
<p>Chicago-based project manager</p>
<div class="divider"></div>
<p>Working on making things better — one project, one community, one day at a time.</p>
<div class="links">
<a href="mailto:greenleebt@gmail.com">Email</a>
<a href="https://github.com/BrendanGreenlee">GitHub</a>
</div>
<div class="tag">More coming soon</div>
</div>
</body>
</html>