-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from charonzero/thihazaw
🔥 build(profile): add thihazaw profile
- Loading branch information
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
name: Thi Ha Zaw | ||
description: Web Developer & Game Designer | ||
image: "https://avatars.githubusercontent.com/u/69466140?v=4" | ||
tags: | ||
- Fullstack | ||
- Frontend | ||
- Game Design | ||
- JavaScript | ||
- ReactJS | ||
- SolidJS | ||
--- | ||
|
||
<div className="flex flex-col md:flex-row space-y-4 md:space-y-0 md:space-x-4 p-4 h-full"> | ||
<div className="md:w-5/12 flex flex-col justify-center items-center p-6 rounded-xl shadow-md border border-white"> | ||
<div className="h-36 w-36 rounded-full border-4 border-indigo-500 overflow-hidden mb-5"> | ||
<img src="https://avatars.githubusercontent.com/u/69466140?v=4" alt="Thi Ha Zaw's Avatar" /> | ||
</div> | ||
<h3 className="text-2xl font-semibold mb-3"> | ||
Hi, I'm Thi Ha Zaw | ||
</h3> | ||
<h4 className="text-lg text-indigo-500 mb-3"> | ||
Web Developer & Game Designer | ||
</h4> | ||
<p className="text-center text-sm mb-2"> | ||
Dedicated software developer from Yangon, Myanmar. Expert in web development and game design. | ||
</p> | ||
<p className="text-center text-sm mb-2"> | ||
Freelance Software Development Engineer | ||
</p> | ||
<p className="text-center text-sm"> | ||
📧 [email protected] | ||
</p> | ||
</div> | ||
|
||
<div className="flex flex-1 items-center justify-center md:border-l md:pl-4"> | ||
<div className="webView bg-gray-300 rounded-xl overflow-hidden shadow-md w-full h-[80vh] md:h-[70vh]"> | ||
<div className="bg-indigo-500 text-white p-2 rounded-t-xl flex justify-between items-center"> | ||
<div className="flex space-x-2"> | ||
<div className="bg-red-500 w-3 h-3 rounded-full"></div> | ||
<div className="bg-yellow-500 w-3 h-3 rounded-full"></div> | ||
<div className="bg-green-500 w-3 h-3 rounded-full"></div> | ||
</div> | ||
<span className="text-xs">https://thi-ha-zaw.vercel.app/</span> | ||
</div> | ||
<iframe | ||
src="https://thi-ha-zaw.vercel.app/" | ||
className="h-full w-full" | ||
title="Portfolio Preview" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
|