-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (87 loc) · 4.37 KB
/
index.html
File metadata and controls
98 lines (87 loc) · 4.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kush Patel | Data Scientist & Frontend Engineer</title>
<meta name="description" content="Portfolio of Kush Patel. Data Science meets Creative Development.">
<!-- 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=Inter:wght@300;400;500&family=Syne:wght@400;600;700;800&family=Space+Mono:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<!-- GSAP & Lenis -->
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/ScrollTrigger.min.js"></script>
<script src="https://unpkg.com/@studio-freight/lenis@1.0.42/dist/lenis.min.js"></script>
</head>
<body>
<main class="split-layout">
<!-- Left Column: Info -->
<section class="info-col">
<header>
<h1 class="name">Kush Patel</h1>
<p class="role"><span id="typewriter"></span><span class="cursor-blink">|</span></p>
</header>
<div class="bio">
<p>Data is the pulse of reality.</p>
<p>I build intelligent systems that help us understand ourselves, heal our bodies, and protect our home.
</p>
</div>
<nav class="contact-nav">
<a href="mailto:hello@kushpatel.com">Email</a>
<a href="https://github.com/kshptl" target="_blank">GitHub</a>
<a href="https://linkedin.com/in/kushpatel44" target="_blank">LinkedIn</a>
</nav>
<footer class="minimal-footer">
<p>© 2025</p>
</footer>
</section>
<!-- Right Column: Work -->
<section class="work-col">
<div class="project-list">
<a href="https://github.com/kshptl/Patient-Selection-for-Diabetes-Drug-Testing-using-EHR-Data"
target="_blank" class="project-item">
<div class="project-media">
<video autoplay muted loop playsinline>
<source src="https://assets.mixkit.co/videos/46748/46748-720.mp4" type="video/mp4">
</video>
</div>
<span class="project-year">2025</span>
<div class="project-details">
<h2 class="project-title">Preserving Life</h2>
<p class="project-desc">Patient Selection for Diabetes Drug Testing using EHR Data.</p>
</div>
</a>
<a href="https://github.com/kshptl/Drug-Review-Sentiment-Analysis" target="_blank" class="project-item">
<div class="project-media">
<video autoplay muted loop playsinline>
<source src="https://assets.mixkit.co/videos/26770/26770-720.mp4" type="video/mp4">
</video>
</div>
<span class="project-year">2024</span>
<div class="project-details">
<h2 class="project-title">Augmenting the Mind</h2>
<p class="project-desc">Sentiment Analysis & Topic Modeling for Drug Reviews.</p>
</div>
</a>
<a href="https://github.com/kshptl/covid-19-emissions" target="_blank" class="project-item">
<div class="project-media">
<video autoplay muted loop playsinline>
<source src="https://assets.mixkit.co/videos/31497/31497-720.mp4" type="video/mp4">
</video>
</div>
<span class="project-year">2024</span>
<div class="project-details">
<h2 class="project-title">Healing Our World</h2>
<p class="project-desc">Visualizing Covid-19 Emissions & Network Clustering.</p>
</div>
</a>
</div>
</section>
</main>
<script src="assets/js/main.js"></script>
</body>
</html>