Skip to content

Commit 0bed11b

Browse files
committedJan 24, 2025
text update 1
1 parent 37ca67e commit 0bed11b

File tree

3 files changed

+34
-33
lines changed

3 files changed

+34
-33
lines changed
 

‎app/globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ body {
119119
}
120120

121121
.highlight {
122-
background-color: #add8e6; /* Light blue */
122+
background-color: rgb(226, 251, 233);
123123
padding: 0.2rem;
124124
border-radius: 0.2rem;
125-
color: #000000; /* Ensure text is visible in dark mode */
125+
color: #000000;
126126
}
127127

‎app/layout.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import './globals.css'
2-
import { Open_Sans } from 'next/font/google'
2+
import { JetBrains_Mono } from 'next/font/google'
33
import type { Metadata } from 'next'
4+
import DynamicFavicon from './components/DynamicFavicon'
45

5-
const openSans = Open_Sans({ subsets: ['latin'] })
6+
const jetbrainsMono = JetBrains_Mono({ subsets: ['latin'] })
67

78
export const metadata: Metadata = {
89
title: 'Reet Nandy | SWE+AI',
@@ -17,12 +18,12 @@ export default function RootLayout({
1718
return (
1819
<html lang="en" className="scroll-smooth">
1920
<head>
20-
<link rel="icon" href="/favicon.ico" /> {/* Update favicon link to use the new favicon */}
21+
<link rel="icon" href="/light.ico" />
2122
</head>
22-
<body className={`${openSans.className} min-h-screen dark:bg-gray-900`}>
23+
<body className={`${jetbrainsMono.className} min-h-screen dark:bg-gray-900`}>
24+
<DynamicFavicon />
2325
{children}
2426
</body>
2527
</html>
2628
)
2729
}
28-

‎app/page.tsx

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ interface Experience {
3131

3232
const projects: Project[] = [
3333
{
34-
id: 'LLM',
35-
code: 'LLM',
34+
id: '1',
35+
code: 'mAIgic',
3636
title: 'AI Agent that reads all your emails and updates your calendar',
3737
description: 'Developed an open-source app that reads communication from gmail, slack, trello and automatically updates your calendar.',
3838
tags: ['Python', 'Flask', 'Postgres', 'ReactJs'],
3939
domain: 'AI',
4040
link: 'https://github.com/yourusername/LLM-application'
4141
},
4242
{
43-
id: 'IO',
43+
id: '2',
4444
code: 'IO',
4545
title: 'Performance Optimization and Analysis of Disk I/O in a Real Linux Environment',
4646
description: 'Achieved a 500% enhancement in cached reads and a 150% boost in non-cached reads, elevating read speeds from the local setup of 2500 MiB/s to 15000 MiB/s on a block size of 65536 bytes.',
@@ -49,62 +49,62 @@ const projects: Project[] = [
4949
link: 'https://github.com/yourusername/Disk-IO-Optimization'
5050
},
5151
{
52-
id: 'FAD',
52+
id: '3',
5353
code: 'FAD',
54-
title: 'Fitness Analytics Dashboard',
54+
title: 'AI-Fitness Analytics Dashboard',
5555
description: 'Architected AWS services to host a Flask application on EC2 providing seamless integration with Google Fit metrics.',
5656
tags: ['Python', 'Django', 'Postgres', 'DynamoDB', 'EC2', 'Sagemaker', 'SNS', 'SQS', 'ReactJs'],
5757
domain: 'Full Stack',
5858
link: 'https://github.com/yourusername/Fitness-Analytics-Dashboard'
5959
},
6060
// Dummy projects
6161
{
62-
id: 'DP1',
62+
id: '4',
6363
code: 'DP1',
64-
title: 'Dummy Project 1',
64+
title: 'Flowcontrol',
6565
description: 'This is a dummy project for testing purposes.',
6666
tags: ['HTML', 'CSS', 'JavaScript'],
6767
domain: 'Frontend',
6868
link: 'https://github.com/yourusername/dummy-project-1'
6969
},
7070
{
71-
id: 'DP2',
71+
id: '5',
7272
code: 'DP2',
73-
title: 'Dummy Project 2',
73+
title: 'KubeControl',
7474
description: 'This is another dummy project for testing purposes.',
7575
tags: ['Python', 'Django'],
7676
domain: 'Backend',
7777
link: 'https://github.com/yourusername/dummy-project-2'
7878
},
7979
{
80-
id: 'DP3',
80+
id: '6',
8181
code: 'DP3',
82-
title: 'Dummy Project 3',
82+
title: 'White board',
8383
description: 'This is yet another dummy project for testing purposes.',
8484
tags: ['React', 'Node.js'],
8585
domain: 'Full Stack',
8686
link: 'https://github.com/yourusername/dummy-project-3'
8787
},
8888
{
89-
id: 'DP4',
89+
id: '7',
9090
code: 'DP4',
91-
title: 'Dummy Project 4',
91+
title: 'Amazon Review',
9292
description: 'This is a dummy project for testing purposes.',
9393
tags: ['AWS', 'Docker'],
9494
domain: 'Cloud',
9595
link: 'https://github.com/yourusername/dummy-project-4'
9696
},
9797
{
98-
id: 'DP5',
98+
id: '8',
9999
code: 'DP5',
100-
title: 'Dummy Project 5',
100+
title: 'Telegram Checkout',
101101
description: 'This is another dummy project for testing purposes.',
102102
tags: ['Kubernetes', 'CI/CD'],
103103
domain: 'DevOps',
104104
link: 'https://github.com/yourusername/dummy-project-5'
105105
},
106106
{
107-
id: 'DP6',
107+
id: '9',
108108
code: 'DP6',
109109
title: 'Dummy Project 6',
110110
description: 'This is yet another dummy project for testing purposes.',
@@ -113,7 +113,7 @@ const projects: Project[] = [
113113
link: 'https://github.com/yourusername/dummy-project-6'
114114
},
115115
{
116-
id: 'DP7',
116+
id: '10',
117117
code: 'DP7',
118118
title: 'Dummy Project 7',
119119
description: 'This is a dummy project for testing purposes.',
@@ -122,7 +122,7 @@ const projects: Project[] = [
122122
link: 'https://github.com/yourusername/dummy-project-7'
123123
},
124124
{
125-
id: 'DP8',
125+
id: '11',
126126
code: 'DP8',
127127
title: 'Dummy Project 8',
128128
description: 'This is another dummy project for testing purposes.',
@@ -131,7 +131,7 @@ const projects: Project[] = [
131131
link: 'https://github.com/yourusername/dummy-project-8'
132132
},
133133
{
134-
id: 'DP9',
134+
id: '12',
135135
code: 'DP9',
136136
title: 'Dummy Project 9',
137137
description: 'This is yet another dummy project for testing purposes.',
@@ -140,7 +140,7 @@ const projects: Project[] = [
140140
link: 'https://github.com/yourusername/dummy-project-9'
141141
},
142142
{
143-
id: 'DP10',
143+
id: '13',
144144
code: 'DP10',
145145
title: 'Dummy Project 10',
146146
description: 'This is a dummy project for testing purposes.',
@@ -156,7 +156,7 @@ const experiences = {
156156
company: "Stealth AI Startup",
157157
title: "Backend Developer Intern (AI)",
158158
period: "June 2024 - Present",
159-
location: "New York, NY",
159+
location: "New York City, USA",
160160
techStack: ["Python", "SQL", "Apache Airflow", "Flask"],
161161
responsibilities: [
162162
"Designed Python/SQL ETL pipelines with Apache Airflow, boosting data ingestion speed by 30% and ensuring reliability with automated validation",
@@ -187,10 +187,10 @@ const experiences = {
187187
]
188188
},
189189
{
190-
company: "Univesidad De Ibague",
190+
company: "Universidad De Ibague",
191191
title: "Technical Intern (Data Science)",
192192
period: "July 2020 - October 2020",
193-
location: "Chennai, India",
193+
location: "Ibague, Colombia",
194194
techStack: ["Java", "C++", "Python"],
195195
responsibilities: [
196196
"Assisted 100+ students in understanding complex data structures and algorithms, leading weekly lab sessions and grading assignments and exams",
@@ -317,14 +317,14 @@ export default function HomePage() {
317317
<section id="home" ref={homeRef} className="min-h-screen flex flex-col justify-center">
318318
<div className="space-y-6">
319319
<h1 className="text-4xl md:text-5xl font-bold dark:text-white">Reet Nandy, MS</h1>
320-
<h2 className="text-2xl md:text-3xl font-semibold dark:text-gray-300">Software + AI</h2>
320+
<h2 className="text-2xl md:text-3xl font-semibold dark:text-gray-300">Software + AI Engineer</h2>
321321
<p className="text-md text-gray-500 dark:text-gray-400">
322322
<Link href="/secret-page" className="text-blue-500 hover:underline">
323323
Interested to see how I look? Click here :)
324324
</Link>
325325
</p>
326326
<p className="text-gray-600 dark:text-gray-300 text-lg md:text-xl">
327-
I love to solve problems. <br />
327+
I believe in solving problems. <br />
328328
FullStack? AI? Core/Infra?<br /> I'm in! I Learn. I Implement.<br />
329329
<Link href="#skills" className="text-blue-500 hover:underline">
330330
All my Technical Skills: Here.
@@ -379,7 +379,7 @@ export default function HomePage() {
379379
</div>
380380
<div className="md:w-2/3">
381381
<p className="mb-4">
382-
Hi, I'm Reet Nandy, a Software Engineer with 2+ years of internship experience in <span className="highlight">cloud-native development</span>, <span className="highlight">DevOps</span>, and <span className="highlight">AI/ML</span>. Skilled in building scalable backend infrastructure and high-performance systems, and developing and deploying machine learning models. Focused on leveraging distributed systems to enhance scalability and efficiency, while staying updated with emerging trends in AI and automation.
382+
Hi, I'm Reet Nandy, a Software + AI Engineer with <strong>3 years</strong> of in-depth internship experience specializing in <span className="highlight">Full Stack Development</span>, <span className="highlight">Cloud/DevOps infrastructure</span>, and <span className="highlight">AI/ML solutions</span>. <br />My expertise revolves around building scalable backend systems, optimizing performance, and deploying advanced AI models to enhance innovation and efficiency. I am committed to leveraging distributed systems to advance scalability and integrate cutting-edge technologies.
383383
</p>
384384
<ul className="list-disc list-inside space-y-2 mb-4">
385385
<li>Expertise in back-end development with Python and Node.js</li>

0 commit comments

Comments
 (0)