<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Narayan Partangel – Technology Executive</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #0b1020;
color: #f8fafc;
line-height: 1.6;
}
header {
padding: 3rem 1.5rem;
max-width: 900px;
margin: 0 auto;
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
h2 {
margin-top: 2.5rem;
border-bottom: 1px solid #1f2937;
padding-bottom: 0.5rem;
}
.subtitle {
color: #9ca3af;
font-size: 1rem;
}
main {
max-width: 900px;
margin: 0 auto 4rem auto;
padding: 0 1.5rem;
}
.section {
margin-top: 2rem;
}
.card {
background: #111827;
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
border: 1px solid #1f2937;
}
.chat-frame {
width: 100%;
height: 600px;
border: none;
border-radius: 12px;
overflow: hidden;
background: #020617;
}
footer {
text-align: center;
padding: 2rem 1.5rem;
color: #6b7280;
border-top: 1px solid #1f2937;
font-size: 0.9rem;
}
a {
color: #38bdf8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Narayan Partangel</h1>
<div class="subtitle">
Senior Technology Executive · Engineering Leadership · Digital Modernization & GenAI
</div>
</header>
<main>
<section class="section">
<div class="card">
<h2>About</h2>
<p>
I’m a senior technology executive focused on building high-performing engineering
organizations, driving large-scale modernization, and applying AI to real-world software
delivery and operations.
</p>
<p>
This site includes a conversational assistant that can answer questions about my background,
experience, and work. Think of it as “chatting with Narayan” before we actually meet.
</p>
</div>
</section>
<section class="section">
<h2>Chat with me</h2>
<div class="card">
<!-- Replace the src below with your actual chatbot URL (Hugging Face Space, etc.) -->
<iframe
class="chat-frame"
src="https://huggingface.co/spaces/npartangel/career_agent"
title="Chat with Narayan"
></iframe>
</div>
</section>
<section class="section">
<div class="card">
<h2>Get in touch</h2>
<p>
If you’d like to talk about leadership roles, advisory work, or collaboration, feel free to
connect with me on LinkedIn or email me directly.
</p>
<p>
LinkedIn: <a href="https://www.linkedin.com/in/YOUR-LINKEDIN" target="_blank">View profile</a><br />
Email: <a href="mailto:you@yourdomain.com">you@yourdomain.com</a>
</p>
</div>
</section>
</main>
<footer>
© <span id="year"></span> Narayan Partangel. All rights reserved.
</footer>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>