VSCode Icon

File

Edit

View

Go

Run

Terminal

Help

Nandini Jambhulkar - Visual Studio Code

Nandini Jambhulkar

AI/ML & Python Developer

I'm a CSE student passionate about AI/ML, Data Science, and Web Development. I build intelligent and user-centric tools that solve real-world problems.

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
const HomePage = () => {
const [isLoaded, setIsLoaded] = useState(true);
const developerInfo = {
name: 'Nandini Jambhulkar',
role: 'AI/ML & Python Developer',
bio: 'Passionate about building impactful AI solutions.'
};
useEffect(() => {
document.title = `${developerInfo.name} | Portfolio`;
setIsLoaded(true);
}, []);
return (
<main className="hero-container">
<h1>{developerInfo.name}</h1>
<p>{developerInfo.role}</p>
<div className="cta">
<Link href="/projects">View Projects</Link>
</div>
</main>
);
};
export default HomePage;
{
}
<>
/>
()
[]
=>