🚀 Hi, I am
> Full-Stack Web & Mobile Developer
> UX & Graphic Designer
🎯 Let’s build something amazing together!
const githubURL = "https://github.com/worldprog21"
const email = "world.prog21@gmail.com"
1const HomePage = () => {
2 const userInfo = {
3 username: 'Sayed Rahmani',
4 profession: 'Software Engineer',
5 hobby: 'Creating innovative solutions'
6 };
7
8 useEffect(() => {
9 document.title = "Profile";
10 }, []);
11
12 return (
13 <section className="profile-container">
14 <h1>{userInfo.username}</h1>
15 <p>{userInfo.profession}</p>
16 </section>
17 );
18 };