forked from anirudhramoo/ani-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
67 lines (61 loc) · 2.5 KB
/
work.html
File metadata and controls
67 lines (61 loc) · 2.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Shrey Modi's Work Experience" />
<link rel="stylesheet" href="style.css" />
<title>Work | Shrey Modi</title>
<script defer>
function toggleTheme() {
document.body.classList.toggle("dark-theme");
const themeButton = document.getElementById("theme-toggle");
if (document.body.classList.contains("dark-theme")) {
themeButton.textContent = "🌗 Light Mode";
localStorage.setItem("theme", "dark");
} else {
themeButton.textContent = "🌗 Dark Mode";
localStorage.setItem("theme", "light");
}
}
window.addEventListener("load", () => {
const savedTheme = localStorage.getItem("theme") || "dark";
if (savedTheme === "dark") {
document.body.classList.add("dark-theme");
} else {
document.body.classList.remove("dark-theme");
}
const themeButton = document.getElementById("theme-toggle");
themeButton.textContent = savedTheme === "dark" ? "🌗 Light Mode" : "🌗 Dark Mode";
});
</script>
</head>
<body class="dark-theme">
<header id="banner">
<h2><a href="index.html">Shrey Modi</a> | Work</h2>
<button id="theme-toggle" onclick="toggleTheme()">🌗 Light Mode</button>
</header>
<main id="content">
<section class="work-experience">
<h3>Nexus Venture Partners</h3>
<p><em>VC Intern - Bay Area, California</em></p>
<p>Built automation tools for startup sourcing and conducted AI market research.</p>
</section>
<section class="work-experience">
<h3>Barclays</h3>
<p><em>Quantitative Developer Intern - Noida, India</em></p>
<p>Developed a CSV editor for automating tasks in reliability testing, improving workflow efficiency.</p>
</section>
<section class="work-experience">
<h3>babblebots.ai</h3>
<p><em>SDE Intern - Mumbai, India</em></p>
<p>Worked on voice authentication systems and backend development, deployed using Google Cloud Platform.</p>
</section>
<section class="work-experience">
<h3>Mizuho Bank</h3>
<p><em>AI-ML Intern - Mumbai, India</em></p>
<p>Created an OCR-based discrepancy checker for trade document validation, achieving high accuracy in name matching.</p>
</section>
</main>
</body>
</html>