Files
cs249r_book/tinytorch/site/extra/community/contact.html
Vijay Janapa Reddi e4896fee5d fix(tinytorch): update favicon, hero styling, and milestone dates
- Replace favicon with flame icon using radial gradients
- Update community hero section to use transparent logo
- Apply modular scale typography (1.75rem subtitle, 180px logo)
- Fix og:title metadata in intro.md frontmatter
- Update milestone dates to historically accurate values
2025-12-15 17:16:24 -05:00

108 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact TinyTorch</title>
<link rel="icon" href="assets/flame.svg" type="image/svg+xml">
<style>
body {
margin: 0;
font-family: 'Courier New', Courier, monospace;
background-color: #f0f4f8;
/* Graph Paper Grid Logic */
background-image:
linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
background-size: 20px 20px;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
.container {
margin-top: 100px; /* Space for menu button */
margin-bottom: 50px;
width: 90%;
max-width: 800px;
background: rgba(255, 255, 255, 0.95);
border: 1px solid #333;
box-shadow: 8px 8px 0px rgba(0,0,0,0.1);
padding: 40px;
box-sizing: border-box;
text-align: center;
}
h1 {
margin-top: 0;
border-bottom: 2px dashed #333;
padding-bottom: 10px;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 2rem;
}
p {
font-family: 'Verdana', sans-serif;
font-size: 1.1rem;
line-height: 1.6;
color: #444;
margin-bottom: 20px;
}
a {
color: #ff6600;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.contact-info {
margin-top: 30px;
font-size: 1.2rem;
}
.email-link {
display: block;
margin-top: 15px;
}
</style>
</head>
<body>
<div class="container">
<h1>Contact Us</h1>
<p>If you have any questions, feedback, or just want to connect, feel free to reach out!</p>
<div class="contact-info">
<p>Vijay Janapa Reddi and Kai Kleinbard</p>
<p>
<a href="https://edge.seas.harvard.edu/people/vijay-janapa-reddi" target="_blank" rel="noopener noreferrer">
Vijay's Harvard SEAS Profile
</a>
</p>
<p>
<a href="mailto:vj@eecs.harvard.edu" class="email-link">vj@eecs.harvard.edu</a>
</p>
<p>
<a href="mailto:kai_kleinbard@seas.harvard.edu" class="email-link">kai_kleinbard@seas.harvard.edu</a>
</p>
<p>For any issues or feedback, please post them directly on our GitHub repository:</p>
<p>
<a href="https://github.com/harvard-edge/cs249r_book" target="_blank" rel="noopener noreferrer">
github.com/harvard-edge/cs249r_book
</a>
</p>
</div>
</div>
<script type="module" src="app.js"></script>
</body>
</html>