Skip to content

Commit f08d5eb

Browse files
committed
Updated the personal portfolio.
1 parent afb42be commit f08d5eb

File tree

2 files changed

+49
-16
lines changed

2 files changed

+49
-16
lines changed

index.html

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<h1 class="name">Gopal Saini</h1>
3838
<p class="title">Full Stack Architect • Cloud Architect • AI/ML Engineer</p>
3939
<p class="description">
40-
AI & ML with expertise in building scalable web applications and intelligent systems. Combining full-stack development, cloud architecture, and machine learning to create innovative, data-driven solutions.
40+
AI & ML with expertise in building scalable web applications & intelligent systems. Combining full-stack development, cloud architecture, and machine learning to create innovative, data-driven solutions.
4141
</p>
4242
<div class="cta-buttons">
4343
<a href="mailto:gopal.saini.work@gmail.com" class="btn btn-primary">
@@ -78,7 +78,7 @@ <h3>
7878
<span class="about-icon">&lt;/&gt;</span>
7979
Engineering Leadership
8080
</h3>
81-
<p>Experienced full-stack developer with deep expertise in JavaScript/TypeScript ecosystem, building modern web applications using React, Python/Node.js, and cloud technologies.</p>
81+
<p>Experienced full-stack developer with deep expertise in JavaScript/TypeScript ecosystem, building modern web applications using React, Python/Node.js, & cloud technologies.</p>
8282
<p>Passionate about clean code, scalable architectures, and leveraging cutting-edge technologies to solve complex problems. Strong focus on performance, security, and user experience.</p>
8383
</div>
8484

@@ -167,7 +167,7 @@ <h2 class="section-title">
167167
</svg>
168168
AI/ML Portfolio
169169
</h2>
170-
<p class="section-subtitle">Post Graduate Program in Artificial Intelligence & Machine Learning</p>
170+
<p class="section-subtitle">Post Graduated in Artificial Intelligence and Machine Learning</p>
171171

172172
<div class="journey-box">
173173
<div class="journey-intro">
@@ -177,29 +177,29 @@ <h2 class="section-title">
177177
<path d="M6 12v5c3 3 9 3 12 0v-5"/>
178178
</svg>
179179
</span>
180-
<p>Completed comprehensive <strong style="color: var(--primary);">Post Graduate Program in AI & ML</strong> covering statistical analysis, machine learning algorithms, deep learning, NLP, computer vision, and neural networks. With 15+ years of experience in IT, I specialize in building intelligent, scalable, and event-driven architectures. Currently engineering AI-driven solutions at Goldman Sachs, combining cutting-edge machine learning with enterprise-grade infrastructure.</p>
180+
<p>Statistical analysis, machine learning algorithms, deep learning, NLP, computer vision, & neural networks.</p>
181181
</div>
182182

183183
<div class="journey-content">
184184
<div class="journey-section">
185185
<h4>Key Projects</h4>
186186
<ul>
187-
<li>Predictive modeling for business forecasting and customer analytics</li>
188-
<li>Image classification and object detection using CNNs</li>
189-
<li>NLP applications including sentiment analysis and text classification</li>
187+
<li>Predictive modeling for business forecasting & customer analytics</li>
188+
<li>Image classification & object detection using CNNs</li>
189+
<li>NLP applications including sentiment analysis & text classification</li>
190190
<li>Recommendation systems using collaborative filtering</li>
191-
<li>Time series forecasting with LSTM and ARIMA models</li>
191+
<li>Time series forecasting with LSTM & ARIMA models</li>
192192
</ul>
193193
</div>
194194

195195
<div class="journey-section">
196196
<h4>Technical Skills</h4>
197197
<ul>
198198
<li>Supervised & Unsupervised Learning algorithms</li>
199-
<li>Deep Learning with TensorFlow, Keras, PyTorch</li>
200-
<li>Natural Language Processing and Computer Vision</li>
201-
<li>Model deployment, MLOps, and production pipelines</li>
202-
<li>Feature engineering and hyperparameter tuning</li>
199+
<li>Deep Learning with TensorFlow, PyTorch</li>
200+
<li>Natural Language Processing & Computer Vision</li>
201+
<li>Model deployment, MLOps, & production pipelines</li>
202+
<li>Feature engineering & hyperparameter tuning</li>
203203
</ul>
204204
</div>
205205
</div>
@@ -217,8 +217,6 @@ <h4>Technical Skills</h4>
217217
<span class="tech-tag">Matplotlib</span>
218218
<span class="tech-tag">Seaborn</span>
219219
<span class="tech-tag">Jupyter</span>
220-
<span class="tech-tag">Computer Vision</span>
221-
<span class="tech-tag">MLOps</span>
222220
</div>
223221
</div>
224222
</section>
@@ -271,7 +269,13 @@ <h2 class="section-title">Let's Connect</h2>
271269

272270
<!-- Footer -->
273271
<footer>
274-
<p>© <span id="year"></span> Gopal Saini. Full Stack Architect. Cloud Architect. AI/ML Engineer.</p>
272+
<div class="footer-divider">
273+
<span class="footer-line"></span>
274+
<span class="footer-name">Gopal Saini</span>
275+
<span class="footer-line"></span>
276+
</div>
277+
<p class="footer-tagline">Engineering clarity. Building with AI. Driven by curiosity.</p>
278+
<p class="footer-copyright">© <span id="year"></span> • All Rights Reserved</p>
275279
</footer>
276280

277281
<script src="./src/script.js"></script>

src/styles.css

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,9 +382,38 @@ footer {
382382
border-top: 1px solid rgba(0, 242, 255, 0.2);
383383
}
384384

385-
footer p {
385+
.footer-divider {
386+
display: flex;
387+
align-items: center;
388+
justify-content: center;
389+
margin-bottom: 1rem;
390+
}
391+
392+
.footer-line {
393+
height: 1px;
394+
background: rgba(0, 242, 255, 0.3);
395+
flex: 1;
396+
max-width: 150px;
397+
}
398+
399+
.footer-name {
400+
color: var(--primary);
401+
font-weight: 600;
402+
margin: 0 2rem;
403+
font-size: 1.1rem;
404+
}
405+
406+
.footer-tagline {
407+
color: var(--gray);
408+
font-size: 0.9rem;
409+
margin: 0;
410+
}
411+
412+
.footer-copyright {
386413
color: var(--gray);
414+
font-size: 0.8rem;
387415
margin-top: 1rem;
416+
opacity: 0.8;
388417
}
389418

390419
@media (max-width: 768px) {

0 commit comments

Comments
 (0)