354 lines
10 KiB
HTML
354 lines
10 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dane Sabo - Mockup</title>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Serif:wght@500;600&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
:root {
|
|
--accent: #2563eb;
|
|
--accent-light: #3b82f6;
|
|
--text: #1f2937;
|
|
--text-muted: #6b7280;
|
|
--bg: #fafafa;
|
|
--card-bg: #ffffff;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
font-family: 'IBM Plex Sans', -apple-system, sans-serif;
|
|
font-size: 17px;
|
|
line-height: 1.7;
|
|
color: var(--text);
|
|
background: var(--bg);
|
|
}
|
|
|
|
/* Fade in animation */
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.animate {
|
|
animation: fadeInUp 0.6s ease-out forwards;
|
|
}
|
|
|
|
.delay-1 { animation-delay: 0.1s; opacity: 0; }
|
|
.delay-2 { animation-delay: 0.2s; opacity: 0; }
|
|
.delay-3 { animation-delay: 0.3s; opacity: 0; }
|
|
.delay-4 { animation-delay: 0.4s; opacity: 0; }
|
|
|
|
/* Layout */
|
|
.container {
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
/* Nav */
|
|
nav {
|
|
padding: 24px 0;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
background: var(--card-bg);
|
|
}
|
|
|
|
nav .container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
nav .logo {
|
|
font-family: 'IBM Plex Serif', serif;
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: var(--text);
|
|
text-decoration: none;
|
|
}
|
|
|
|
nav ul {
|
|
display: flex;
|
|
gap: 32px;
|
|
list-style: none;
|
|
}
|
|
|
|
nav a {
|
|
color: var(--text-muted);
|
|
text-decoration: none;
|
|
font-size: 0.95rem;
|
|
font-weight: 500;
|
|
position: relative;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
nav a:hover {
|
|
color: var(--accent);
|
|
}
|
|
|
|
nav a::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -4px;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: var(--accent);
|
|
transition: width 0.2s ease;
|
|
}
|
|
|
|
nav a:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Hero */
|
|
.hero {
|
|
padding: 80px 0 60px;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-family: 'IBM Plex Serif', serif;
|
|
font-size: 3rem;
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.hero .tagline {
|
|
font-size: 1.15rem;
|
|
color: var(--text-muted);
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.hero .tagline span {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.hero .intro {
|
|
font-size: 1.1rem;
|
|
max-width: 600px;
|
|
}
|
|
|
|
/* Section */
|
|
section {
|
|
padding: 48px 0;
|
|
}
|
|
|
|
section h2 {
|
|
font-family: 'IBM Plex Serif', serif;
|
|
font-size: 1.75rem;
|
|
font-weight: 600;
|
|
margin-bottom: 24px;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
/* Links */
|
|
a {
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--accent-light);
|
|
}
|
|
|
|
/* Cards */
|
|
.card-grid {
|
|
display: grid;
|
|
gap: 20px;
|
|
}
|
|
|
|
.card {
|
|
background: var(--card-bg);
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 12px;
|
|
padding: 24px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.card:hover {
|
|
border-color: var(--accent);
|
|
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.card h3 {
|
|
font-family: 'IBM Plex Serif', serif;
|
|
font-size: 1.25rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.card p {
|
|
color: var(--text-muted);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.card .tag {
|
|
display: inline-block;
|
|
margin-top: 12px;
|
|
font-size: 0.8rem;
|
|
padding: 4px 10px;
|
|
background: #eff6ff;
|
|
color: var(--accent);
|
|
border-radius: 4px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Quick links */
|
|
.quick-links {
|
|
display: flex;
|
|
gap: 16px;
|
|
margin-top: 32px;
|
|
}
|
|
|
|
.quick-links a {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 12px 20px;
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 8px;
|
|
color: var(--text);
|
|
font-weight: 500;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.quick-links a:hover {
|
|
border-color: var(--accent);
|
|
color: var(--accent);
|
|
}
|
|
|
|
.quick-links a.primary {
|
|
background: var(--accent);
|
|
border-color: var(--accent);
|
|
color: white;
|
|
}
|
|
|
|
.quick-links a.primary:hover {
|
|
background: var(--accent-light);
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
padding: 48px 0;
|
|
margin-top: 48px;
|
|
border-top: 1px solid #e5e7eb;
|
|
color: var(--text-muted);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* Comparison toggle */
|
|
.toggle-bar {
|
|
position: fixed;
|
|
bottom: 24px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: var(--text);
|
|
color: white;
|
|
padding: 12px 24px;
|
|
border-radius: 100px;
|
|
font-size: 0.9rem;
|
|
z-index: 100;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="animate">
|
|
<div class="container">
|
|
<a href="/" class="logo">Dane Sabo</a>
|
|
<ul>
|
|
<li><a href="#projects">Projects</a></li>
|
|
<li><a href="#about">About</a></li>
|
|
<li><a href="/cv.pdf">CV</a></li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<main>
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1 class="animate delay-1">Hey, I'm Dane</h1>
|
|
<p class="tagline animate delay-2">
|
|
PhD Candidate · <span>Control Systems</span> · NRC Fellow
|
|
</p>
|
|
<p class="intro animate delay-3">
|
|
I'm a Mechanical Engineering PhD student at Pitt researching high-assurance autonomous hybrid control systems. When I'm not in the lab, you'll find me wrenching on my Honda CRF or working on an LS swap.
|
|
</p>
|
|
<div class="quick-links animate delay-4">
|
|
<a href="/cv.pdf" class="primary">View CV →</a>
|
|
<a href="mailto:yourstruly@danesabo.com">Get in touch</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="projects">
|
|
<div class="container">
|
|
<h2 class="animate">Projects</h2>
|
|
<div class="card-grid">
|
|
<a href="#" class="card animate delay-1">
|
|
<h3>Hybrid Systems Verification</h3>
|
|
<p>Developing formal guarantees for autonomous systems operating in complex, dynamic environments.</p>
|
|
<span class="tag">Research</span>
|
|
</a>
|
|
<a href="#" class="card animate delay-2">
|
|
<h3>300ZX LS Swap</h3>
|
|
<p>Dropping a 5.3L LS into an '86 300ZX. Custom mounts, wiring, and fabrication.</p>
|
|
<span class="tag">Build</span>
|
|
</a>
|
|
<a href="#" class="card animate delay-3">
|
|
<h3>Custom 3D Printer</h3>
|
|
<p>Building a CoreXY printer from scratch with Klipper firmware.</p>
|
|
<span class="tag">Build</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="about">
|
|
<div class="container">
|
|
<h2 class="animate">About</h2>
|
|
<p class="animate delay-1">
|
|
I spent three years with Pitt's Formula SAE team, progressing from Marketing Director to Technical Director, leading 30+ engineers and managing a six-figure budget. My undergrad research on aerodynamic vortex-generating fences was published in <em>Ingenium</em>.
|
|
</p>
|
|
<br>
|
|
<p class="animate delay-2">
|
|
Currently serving on the MEMS Department Chair Search Committee and co-founded the RPM Club to help students learn hands-on automotive skills.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p>© 2026 Dane Sabo · Built with Hugo</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<div class="toggle-bar">
|
|
✨ Mockup v1 — Typography + Hero + Cards
|
|
</div>
|
|
</body>
|
|
</html>
|