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: 'Abhayjit Sodhi',
role: 'Data Engineer',
bio: 'Building scalable ETL pipelines & data 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="/contact">Contact Me</Link>
</div>
</main>
);
};
export default HomePage;
Abhayjit Sodhi
Data Engineer
I design robust, scalable data pipelines using modern technologies. Focused on clean code and streamlined data processing for reliable insights.
{
}
<>
/>
()
[]
=>