-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
218 lines (200 loc) · 13.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Deepak Malik's AI Engineer Portfolio">
<title>Deepak Malik - AI Engineer Portfolio</title>
<!-- Favicon -->
<link rel="icon" href="favicon/deepak-malik-favicon.svg" type="image/x-icon">
<!-- Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body class="bg-gradient-to-r from-blue-500 to-purple-500 text-white font-sans">
<!-- Navigation Bar -->
<nav class="bg-gray-800 p-4">
<div class="container mx-auto flex justify-between items-center">
<div class="text-xl font-bold text-yellow-400">Deepak Malik</div>
<div class="space-x-4">
<a href="#about" class="text-gray-300 hover:text-white">About</a>
<a href="#skills" class="text-gray-300 hover:text-white">Skills</a>
<a href="#projects" class="text-gray-300 hover:text-white">Projects</a>
<a href="#resume" class="text-gray-300 hover:text-white">Resume</a>
<a href="#contact" class="text-gray-300 hover:text-white">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero-section relative bg-gradient-to-r from-purple-600 to-pink-600 py-32">
<div class="container mx-auto text-center px-4">
<h1 class="text-5xl md:text-6xl font-bold text-yellow-400 mb-4">Deepak Malik</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-6">
Gen AI Engineer | Problem Solver | Lifelong Learner
</p>
<div class="flex justify-center gap-6 mt-8">
<a href="#contact" class="btn-yellow btn-outline">Hire Me</a>
<a href="#projects" class="btn-outline">Explore My Work</a>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="py-16 bg-gradient-to-r from-gray-800 to-gray-900">
<div class="container mx-auto px-6 text-center">
<h2 class="section-title">About Me</h2>
<p class="mt-4 max-w-3xl mx-auto text-gray-300">
I am a self-taught programmer with a passion for AI and innovative technologies. After working with
Cognizant for 1 year and 8 months, I decided to pursue my interest in Generative AI. I have completed
several certifications in Python and Gen AI.My journey has been one of continuous learning and growth,
and I am excited to
bring my skills and enthusiasm to new challenges.
</p>
<div class="mt-8 flex justify-center">
<img src="./assets/deepak-photo.jpeg" alt="Deepak Malik" class="w-48 h-48 rounded-full shadow-lg">
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-16 bg-gradient-to-r from-green-600 to-teal-600">
<div class="container mx-auto text-center">
<h2 class="section-title text-gray-900">Technical Skills</h2>
<div class="mt-8 grid grid-cols-2 md:grid-cols-4 gap-6 max-w-6xl mx-auto">
<div class="skill-card">Python</div>
<div class="skill-card">PydanticAI</div>
<div class="skill-card">GPT APIs</div>
<div class="skill-card">Selenium</div>
<div class="skill-card">HTML & CSS</div>
<div class="skill-card">TailwindCSS</div>
<div class="skill-card">JavaScript</div>
<div class="skill-card">GitHub</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-16 bg-gradient-to-r from-gray-800 to-gray-900">
<div class="container mx-auto px-6">
<h2 class="section-title text-center text-white">Highlighted Projects</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 mt-8">
<!-- Project 1: AI Conversation Agent -->
<div
class="project-card bg-gray-700 rounded-lg shadow-lg overflow-hidden hover:shadow-2xl transition-all duration-300">
<div class="p-6 flex flex-col h-full">
<h3 class="text-2xl font-semibold text-white mb-4">Conversation Agent</h3>
<p class="text-gray-300 mb-4">An AI-powered query-response agent with contextual memory, designed to
understand queries, provide accurate responses, and enhance user interactions by recalling past
conversations.</p>
<div class="tech-stack mb-4">
<h4 class="stack-title text-white font-bold text-lg">Technologies Used</h4>
<div class="tech-list flex flex-wrap gap-2">
<span class="tech-item">Python</span>
<span class="tech-item">Gemini LLM</span>
<span class="tech-item">FAISS</span>
<span class="tech-item">PydanticAI</span>
<span class="tech-item">JSON</span>
</div>
</div>
<div class="mt-auto flex justify-between items-center">
<a href="https://github.com/deepakmalikk/conversation-agent"
class="github-link flex items-center text-white hover:text-gray-300 transition-all duration-300"
target="_blank">
<svg class="github-icon mr-2" viewBox="0 0 24 24" width="24" height="24">
<path fill="currentColor"
d="M12 0C5.37 0 0 5.37 0 12c0 5.3 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 21.795 24 17.295 24 12c0-6.63-5.37-12-12-12" />
</svg>
View Code
</a>
</div>
</div>
</div>
<!-- Project 2: Financial Agent -->
<div
class="project-card bg-gray-700 rounded-lg shadow-lg overflow-hidden hover:shadow-2xl transition-all duration-300">
<div class="p-6 flex flex-col h-full">
<h3 class="text-2xl font-semibold text-white mb-4">Financial Agent</h3>
<p class="text-gray-300 mb-4">An AI-powered financial research assistant that fetches real-time
data, analyzes stock fundamentals, and provides actionable insights based on the latest news.
</p>
<div class="tech-stack mb-4">
<h4 class="stack-title text-white font-bold text-lg">Technologies Used</h4>
<div class="tech-list flex flex-wrap gap-2">
<span class="tech-item">Python</span>
<span class="tech-item">Groq LLM</span>
<span class="tech-item">DuckDuckGo</span>
<span class="tech-item">YFinanceTools</span>
<span class="tech-item">PhiData</span>
</div>
</div>
<div class="mt-auto flex justify-between items-center">
<a href="https://github.com/deepakmalikk/Financial_Agent"
class="github-link flex items-center text-white hover:text-gray-300 transition-all duration-300"
target="_blank">
<svg class="github-icon mr-2" viewBox="0 0 24 24" width="24" height="24">
<path fill="currentColor"
d="M12 0C5.37 0 0 5.37 0 12c0 5.3 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 21.795 24 17.295 24 12c0-6.63-5.37-12-12-12" />
</svg>
View Code
</a>
</div>
</div>
</div>
<!-- Project 3: Portfolio Website -->
<div
class="project-card bg-gray-700 rounded-lg shadow-lg overflow-hidden hover:shadow-2xl transition-all duration-300">
<div class="p-6 flex flex-col h-full">
<h3 class="text-2xl font-semibold text-white mb-4">Portfolio Website</h3>
<p class="text-gray-300 mb-4">A modern portfolio website showcasing my journey as an AI Engineer,
featuring a clean design, responsive layout, and interactive elements across various sections.
</p>
<div class="tech-stack mb-4">
<h4 class="stack-title text-white font-bold text-lg">Technologies Used</h4>
<div class="tech-list flex gap-2">
<span class="tech-item">HTML5</span>
<span class="tech-item">CSS3</span>
<span class="tech-item">Javascript</span>
<span class="tech-item">TailwindCSS</span>
</div>
</div>
<div class="mt-auto flex justify-between items-center">
<a href="https://github.com/deepakmalikk/deepak_portfolio"
class="github-link flex items-center text-white hover:text-gray-300 transition-all duration-300"
target="_blank">
<svg class="github-icon mr-2" viewBox="0 0 24 24" width="24" height="24">
<path fill="currentColor"
d="M12 0C5.37 0 0 5.37 0 12c0 5.3 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 21.795 24 17.295 24 12c0-6.63-5.37-12-12-12" />
</svg>
View Code
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Resume Section -->
<section id="resume" class="py-16 bg-gradient-to-r from-blue-600 to-indigo-600">
<div class="container mx-auto px-6 text-center">
<h2 class="section-title">Resume</h2>
<p class="mt-4 text-gray-300">Download my resume to learn more about my experience and skills.</p>
<div class="mt-4">
<a href="./assets/Deepak Malik Resume (1).pdf" download class="btn-yellow">Download Resume</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-gradient-to-r from-gray-800 to-gray-900">
<div class="container mx-auto px-6 text-center">
<h2 class="section-title">Contact Me</h2>
<p class="mt-4 text-gray-300">Want to connect? Reach out on:</p>
<div class="mt-4 space-x-4">
<a href="https://x.com/malikdeepak09" target="_blank" class="btn-social">X</a>
<a href="https://linkedin.com/in/malikdeepak09" target="_blank" class="btn-social">LinkedIn</a>
<a href="https://github.com/deepakmalikk" target="_blank" class="btn-social">GitHub</a>
</div>
</div>
</section>
<footer class="py-4 bg-gray-800 text-center text-gray-400">
© 2025 Deepak Malik. All rights reserved.
</footer>
<script src="script.js"></script>
</body>
</html>