-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
102 lines (94 loc) · 5.61 KB
/
Copy pathabout.html
File metadata and controls
102 lines (94 loc) · 5.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About — Saumya Lohia</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<link rel="stylesheet" href="portfolio.css" />
</head>
<body>
<!-- ─── Navigation ─────────────────────────────────────────── -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top scrolled" id="mainNav">
<div class="container">
<a class="navbar-brand fw-bold" href="/">SL</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navMenu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navMenu">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link active" href="/about">About</a></li>
<li class="nav-item"><a class="nav-link" href="/#case-studies">Selected Work</a></li>
<li class="nav-item"><a class="nav-link" href="https://drive.google.com/file/d/1GzHEar2Y93HeWIgP-y9a-6OvQQUbMp_D/view?usp=drive_link" target="_blank" rel="noopener">Resume</a></li>
</ul>
</div>
</div>
</nav>
<!-- ─── About ──────────────────────────────────────────────── -->
<section id="about" class="section-light" style="padding-top: 140px; background: #fff;">
<div class="container">
<div class="row align-items-center g-5 justify-content-center">
<div class="col-lg-4 text-center">
<img src="photo.jpg" alt="Saumya Lohia" class="avatar-placeholder" style="object-fit: cover;" />
</div>
<div class="col-lg-5">
<span class="section-label">About Me</span>
<h2 class="section-title">Hi, I'm Saumya!</h2>
<p class="lead">Originally from Texas, I'm currently a Master's student in the Information Management & Systems program at UC Berkeley, specializing in product management.</p>
<p>My experience has spanned engineering, supply chain, healthcare, and project management. In all of these roles, I've seen common themes: understanding users, navigating complexity, and creating meaningful impact. I'm passionate about bringing my experience to building thoughtful, user-centered products and defining clear, actionable strategy.</p>
<a href="https://drive.google.com/file/d/1GzHEar2Y93HeWIgP-y9a-6OvQQUbMp_D/view?usp=drive_link" target="_blank" rel="noopener" class="btn btn-outline-primary mt-4">Resume</a>
</div>
</div>
<hr class="about-divider" />
<!-- ─── Photos ────────────────────────────────────────────── -->
<span class="section-label">A Little More</span>
<h2 class="section-title mt-1">Outside of Work</h2>
<p>I've traveled to over 25 countries, took a year off to solo travel, and I love reading nonfiction books to learn more about history. I've hiked the Inca Trail, climbed a volcano in Guatemala, and hiked a glacier in Patagonia.</p>
<div class="row g-3 mt-2">
<div class="col-md-4 fade-up" style="transition-delay: 0s;">
<img src="argentina.jpeg" alt="description" class="photo-placeholder photo-placeholder-sm" style="object-fit: cover;" />
</div>
<div class="col-md-4 fade-up" style="transition-delay: 0.15s;">
<img src="guatemala.jpeg" alt="description" class="photo-placeholder photo-placeholder-sm" style="object-fit: cover;" />
</div>
<div class="col-md-4 fade-up" style="transition-delay: 0.3s;">
<img src="ireland.JPG" alt="description" class="photo-placeholder photo-placeholder-sm" style="object-fit: cover;" />
</div>
</div>
</div>
</section>
<!-- ─── Footer ─────────────────────────────────────────────── -->
<footer id="contact">
<div class="container">
<div class="contact-slim-inner">
<div>
<p class="contact-slim-label">Let's Talk</p>
</div>
<div class="contact-slim-actions">
<a href="mailto:saumya.lohia@berkeley.edu" class="btn btn-primary">
<i class="fas fa-envelope me-2"></i>Email Me
</a>
<a href="https://drive.google.com/file/d/1GzHEar2Y93HeWIgP-y9a-6OvQQUbMp_D/view?usp=drive_link" target="_blank" rel="noopener" class="btn btn-outline-accent">
<i class="fas fa-file-alt me-2"></i>Resume
</a>
<a href="https://www.linkedin.com/in/saumyalohia/" target="_blank" rel="noopener" class="contact-icon" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<p class="footer-credit">Designed & built by Saumya Lohia</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(e => {
if (e.isIntersecting) {
e.target.classList.add('visible');
observer.unobserve(e.target);
}
});
}, { threshold: 0.15 });
document.querySelectorAll('.fade-up').forEach(el => observer.observe(el));
</script>
</body>
</html>