-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
299 lines (266 loc) · 11.1 KB
/
Copy pathindex.html
File metadata and controls
299 lines (266 loc) · 11.1 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Gaurav Sharma — Venture, AI & Research</title>
<!-- Font: system / clean -->
<style>
/* --- Minimal, Steve-Jobs-like styling --- */
:root{
--bg: #ffffff;
--text: #111;
--muted: #666;
--accent: #111; /* keep monochrome for the Jobs aesthetic */
--maxw: 880px;
}
html,body{height:100%}
body{
margin:0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
background:var(--bg);
color:var(--text);
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
transition: background .25s ease, color .25s ease;
line-height:1.55;
}
/* Dark mode variables */
body.dark {
--bg: #0b0b0b;
--text: #ececec;
--muted: #9a9a9a;
--accent: #ececec;
background:var(--bg);
color:var(--text);
}
/* Layout */
.wrap{max-width:var(--maxw);margin: 48px auto;padding: 0 20px;}
header {text-align:center;padding: 48px 0 28px;}
.name {
font-size: clamp(28px, 6vw, 48px);
font-weight: 700;
letter-spacing: -0.02em;
margin: 6px 0 4px;
}
.title {
font-size: 14px;
color:var(--muted);
margin-bottom: 18px;
}
/* Profile image */
.photo {
width: 160px;
height: 160px;
border-radius: 50%;
object-fit: cover;
display:block;
margin: 0 auto 18px;
border: 4px solid transparent;
}
body.dark .photo { border-color: rgba(255,255,255,.06); }
/* Social icons row */
.social {
display:flex;
justify-content:center;
gap:18px;
margin-top: 10px;
}
.social a { color:var(--text); text-decoration:none; font-size:18px; opacity:.9; }
.social a:hover{opacity:1; transform:translateY(-2px);}
/* Sections */
section { padding: 28px 0; border-top: 1px solid rgba(0,0,0,0.04); }
body.dark section { border-top-color: rgba(255,255,255,0.04); }
h2 {
font-size: 16px;
margin: 0 0 14px 0;
font-weight: 700;
letter-spacing: .02em;
}
p, li { font-size: 15px; color:var(--text); margin: 0 0 12px 0; }
ul { padding-left: 18px; margin: 0; }
/* Compact cards for experience */
.card {
padding: 16px 18px;
border-radius: 8px;
background: rgba(0,0,0,0.02);
margin-bottom: 12px;
}
body.dark .card { background: rgba(255,255,255,0.02); }
.role { font-weight:600; margin-bottom:6px; }
.meta { color:var(--muted); font-size:13px; margin-bottom:8px; }
footer { text-align:center; color:var(--muted); padding: 34px 0 80px; font-size:13px; }
/* Dark mode toggle (simple button) */
.toggle {
position: fixed;
right:18px;
top:16px;
background:transparent;
border:1px solid rgba(0,0,0,0.06);
border-radius:8px;
padding:8px 10px;
cursor:pointer;
font-size:14px;
color:var(--text);
backdrop-filter: blur(6px);
}
body.dark .toggle { border-color: rgba(255,255,255,0.06); color:var(--text); }
/* Responsive tweaks */
@media (max-width:520px){
.photo{width:132px;height:132px}
.wrap{margin:28px auto}
}
</style>
<!-- Minimal icons (inline SVG) -->
<script>
// Toggle dark mode and remember preference
function toggleTheme(){
document.body.classList.toggle('dark');
const isDark = document.body.classList.contains('dark');
try { localStorage.setItem('prefers-dark', isDark ? '1' : '0'); } catch(e){}
updateToggleLabel();
}
function updateToggleLabel(){
const btn = document.getElementById('themeBtn');
if(!btn) return;
btn.textContent = document.body.classList.contains('dark') ? '☀︎ Light' : '🌙 Dark';
}
// Initialize on load
(function(){
try {
const pref = localStorage.getItem('prefers-dark');
if(pref === '1') document.body.classList.add('dark');
} catch(e){}
window.addEventListener('DOMContentLoaded', updateToggleLabel);
})();
</script>
</head>
<body>
<!-- Theme toggle -->
<button id="themeBtn" class="toggle" onclick="toggleTheme()">🌙 Dark</button>
<div class="wrap">
<header>
<!-- PROFILE PHOTO:
Option A: Upload your own headshot to the repo named `profile.jpg`.
Option B: Use an absolute URL (replace src="profile.jpg" with the URL).
If image not found, placeholder appears automatically.
-->
<img class="photo" src="profile.jpg" alt="Gaurav Sharma photo"
onerror="this.onerror=null; this.src='https://via.placeholder.com/320?text=Gaurav+Sharma';">
<div class="name">Gaurav Sharma</div>
<div class="title">Venture Capital · AI & Frontier Tech · Founder</div>
<div class="social" aria-label="social links">
<!-- LinkedIn -->
<a href="https://www.linkedin.com/in/sarosvale/" target="_blank" rel="noopener">
<!-- LinkedIn SVG -->
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden>
<path d="M4.98 3.5C4.98 4.61 4.07 5.5 2.96 5.5C1.85 5.5 0.94 4.61 0.94 3.5C0.94 2.39 1.85 1.5 2.96 1.5C4.07 1.5 4.98 2.39 4.98 3.5Z" fill="currentColor"/>
<path d="M0.5 24H5.4V7.98H0.5V24Z" fill="currentColor"/>
<path d="M8.37 7.98V24H13.26V15.55C13.26 12.96 18.02 12.64 18.02 15.55V24H22.92V14.02C22.92 8.56 16.9 8.95 13.9 11.54V7.98H8.37Z" fill="currentColor"/>
</svg>
</a>
<!-- ResearchGate (if unsupported, it's simply an icon link) -->
<a href="https://www.researchgate.net/profile/Gaurav-Sharma-237" target="_blank" rel="noopener" title="ResearchGate">
<!-- simple book-like icon for publications -->
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden>
<path d="M3 5.5A2.5 2.5 0 0 1 5.5 3h12A2.5 2.5 0 0 1 20 5.5v13A2.5 2.5 0 0 1 17.5 21H5.5A2.5 2.5 0 0 1 3 18.5V5.5Z" stroke="currentColor" stroke-width="1.2" stroke-linejoin="round"/>
<path d="M7 7h10M7 11h10M7 15h6" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
</svg>
</a>
<!-- Email -->
<a href="mailto:Gauravdodrawat@gmail.com" title="Email">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden>
<path d="M2 6.5v11A2.5 2.5 0 0 0 4.5 20h15A2.5 2.5 0 0 0 22 17.5v-11A2.5 2.5 0 0 0 19.5 4h-15A2.5 2.5 0 0 0 2 6.5z" stroke="currentColor" stroke-width="1.1" stroke-linejoin="round"/>
<path d="M21 6.5l-9 6-9-6" stroke="currentColor" stroke-width="1.1" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
</header>
<!-- About -->
<section id="about" aria-labelledby="about-heading">
<h2 id="about-heading">About</h2>
<p>
I structured an early-stage frontier tech fund and leverage AI personalization and predictive modeling to source, evaluate and support startups. I work at the intersection of venture capital, applied AI, and product-led founding.
</p>
</section>
<!-- Experience -->
<section id="experience" aria-labelledby="exp-heading">
<h2 id="exp-heading">Experience</h2>
<div class="card">
<div class="role">General Partner Fellow — VC Lab · Radha Capital</div>
<div class="meta">Aug 2024 – Present</div>
<div>Structuring a $9M pre-seed fund focused on frontier tech; sourcing startups and building an LP pipeline. Focus on thesis-driven sourcing and AI-enabled diligence.</div>
</div>
<div class="card">
<div class="role">Founder — Urbmeal (Kyukru.com)</div>
<div class="meta">Jun 2022 – Present</div>
<div>Founded a personalized chef & meal-planning product; pivoted to AI-driven meal planning and delivery, improving retention and unit economics.</div>
</div>
<div class="card">
<div class="role">Venture Scout — 30+ VC Funds</div>
<div class="meta">Nov 2023 – May 2025</div>
<div>Scouted 300+ startups across AI, SaaS, and deeptech; analyzed 100+ for investment potential and facilitated 50+ introductions leading to multiple due diligence rounds.</div>
</div>
<div class="card">
<div class="role">Investment Banking Intern — SmartKnower</div>
<div class="meta">May 2022 – Jul 2022</div>
</div>
<div class="card">
<div class="role">Founder — fikarkyu.com</div>
<div class="meta">Jul 2020 – May 2022</div>
</div>
</section>
<!-- Skills -->
<section id="skills" aria-labelledby="skills-heading">
<h2 id="skills-heading">Skills</h2>
<ul>
<li><strong>Venture & Investment:</strong> Technical & market due diligence, portfolio construction, financial modelling, term sheets.</li>
<li><strong>Market Research:</strong> TAM/SAM/SOM, competitive analysis, business model evaluation.</li>
<li><strong>Technical:</strong> Machine Learning, NLP, AI-driven personalization, predictive modeling.</li>
<li><strong>Tools:</strong> PitchBook, Crunchbase, Carta, Pulley.</li>
</ul>
</section>
<!-- replace the ResearchGate link in header/social row -->
<a href="https://www.researchgate.net/profile/Gaurav-Sharma-237" target="_blank" rel="noopener">
<!-- icon SVG... -->
</a>
<!-- and if you want each paper to link directly to its page, update the publication card like: -->
<div class="card">
<div class="role">
<a href="https://www.researchgate.net/publication/395118502_Sandbox-Based_Real-Time_Cyber_Attack_Simulation_and_Analysis?_tp=..." target="_blank" rel="noopener">
Sandbox-Based Real-Time Cyber Attack Simulation and Analysis
</a>
</div>
<div class="meta">Book Chapter · August 2025 </div>
</div>
<div class="card">
<div class="role">
<a href="https://www.researchgate.net/publication/379936345_AI_in_Defence_and_Ethical_Concerns?_tp=..." target="_blank" rel="noopener">
AI in Defence and Ethical Concerns
</a>
</div>
<div class="meta">Conference Paper · February 2024 </div>
</div>
<!-- Education -->
<section id="education" aria-labelledby="edu-heading">
<h2 id="edu-heading">Education</h2>
<ul>
<li>Venture Institute — VC Program</li>
<li>Bachelor of Mechanical Engineering — Vellore Institute of Technology (2020–2024)</li>
<li>Techstars Venture Deals Program</li>
<li>Founder Institute — Incubator Alumnus</li>
</ul>
</section>
<footer>
© 2025 Gaurav Sharma
</footer>
</div>
<!-- No external JS frameworks required -->
<script>
// Small UX: press "t" to toggle theme (optional)
document.addEventListener('keydown', (e) => {
if(e.key === 't' || e.key === 'T') toggleTheme();
});
</script>
</body>
</html>