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
const HomePage = () => {
const [isLoaded, setIsLoaded] = useState(true);
const Info = {
name: 'Arman Bhatia',
role: 'Cyber security Specialist | SOC Analyst',
bio: 'Securing systems, one detection at a time'
};
useEffect(() => {
document.title = ` Arman Bhatia | 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;
Arman Bhatia
IT Professional → Cybersecurity
Transitioning from enterprise IT support into cybersecurity. Building detection, monitoring, and offensive security skills through hands-on home lab work and industry certifications.
{
}
<>
/>
()
[]
=>