VSCode Icon

File

Edit

View

Go

Run

Terminal

Help

Aliasgar Sogiawala — Visual Studio Code

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: 'Aliasgar Sogiawala',
role: 'Full Stack Developer',
bio: 'Building modern web experiences and AI / ML 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;

Aliasgar Sogiawala

|

Building modern web experiences and AI / ML solutions

{
}
<>
/>
()
[]
=>
React
Next.js
TypeScript
Python
Node.js
Java
Vercel
Git
GitHub
JavaScript
HTML
CSS
Copilot Chat

Hi! I'm Aliasgar's AI assistant. Ask me anything about his skills, experience, projects, or background!

Copilot can make mistakes. Enter to send, Shift+Enter for newline.

zsh
██╗   ██╗███████╗ ██████╗ ██████╗ ██████╗ ███████╗
 ██║   ██║██╔════╝██╔════╝██╔═══██╗██╔══██╗██╔════╝
 ██║   ██║███████╗██║     ██║   ██║██║  ██║█████╗  
 ╚██╗ ██╔╝╚════██║██║     ██║   ██║██║  ██║██╔══╝  
  ╚████╔╝ ███████║╚██████╗╚██████╔╝██████╔╝███████╗
   ╚═══╝  ╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝
Last login: Tue Jun 16 2026 11:17:27 AM on ttys000
Welcome to Aliasgar's VS Code Terminal
Type 'help' for available commands.
aliasgarsogiawala@portfolio:~/portfolio$