-
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 #137 from shwephuehmone25/shwephuehmone
🔥 build(profile): add shwephuehmone profile
- Loading branch information
Showing
1 changed file
with
67 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,67 @@ | ||
--- | ||
name: Shwe Phue Hmone | ||
description: I'm a web wizard! 🧙♂️ As a mid-level backend developer, I've conjured code with PHP, Laravel, Vue/Nuxt.js, and now, Node.js! 🚀 | ||
image: "https://avatars.githubusercontent.com/u/101862633?v=4" | ||
tags: | ||
- HTML | ||
- CSS | ||
- Bootstrap | ||
- Tailwind | ||
- JavaScript | ||
- VueJS | ||
- NuxtJS | ||
- AlpineJS | ||
- PHP | ||
- MySQL | ||
- Laravel | ||
- NodeJS | ||
--- | ||
|
||
import Counter from "@/components/Contributors/Counter/Counter"; | ||
import ContriSquareBox from "@/components/Contributors/ContriSquareBox/ContriSquareBox"; | ||
import SpacingDivider from "@/components/Common/SpacingDivider/SpacingDivider"; | ||
|
||
<div className="shwephuehmone"> | ||
<div className="flex flex-col md:flex-row"> | ||
<div className="md:w-6/12 mb-5 flex flex-col justify-center items-center"> | ||
<div className="h-28 w-28 rounded-3xl overflow-hidden mx-auto"> | ||
<img src="https://avatars.githubusercontent.com/u/101862633?v=4" /> | ||
</div> | ||
<SpacingDivider size="sm"/> | ||
<h3 className="flex flex-row max-w-[240px] mx-auto"> | ||
<img | ||
src="https://avatars.githubusercontent.com/u/101862633?v=4" | ||
className="h-[20px] object-contain mr-2" | ||
/> | ||
<span> Hi 👋, I'm Shwe Phue Hmone </span> | ||
</h3> | ||
<SpacingDivider size="sm"/> | ||
<Counter /> | ||
<SpacingDivider size="sm"/> | ||
<ContriSquareBox> | ||
<p className="text-center text-sm mb-2"> | ||
<img | ||
className="h-8 inline-block mr-1 relative -top-1" | ||
src="https://i.pinimg.com/originals/83/e7/6d/83e76dde4175d085a97f0ebc449a04fd.gif" | ||
style={{ background: 'none', width: '50px', height: '50px' }} | ||
/> | ||
As a PHP web developer, I'm enthusiastic about building free software to assist those in need! | ||
</p> | ||
<p className="text-center text-sm mb-2"> | ||
<img | ||
className="h-8 inline-block mr-1 relative -top-1" | ||
src="https://i.pinimg.com/originals/83/e7/6d/83e76dde4175d085a97f0ebc449a04fd.gif" | ||
style={{ background: 'none', width: '50px', height: '50px' }} | ||
/> | ||
How to reach me: **[email protected] (or) [Facebook](https://www.facebook.com/profile.php?id=100013926368043&mibextid=ZbWKwL/)** | ||
</p> | ||
</ContriSquareBox> | ||
</div> | ||
<div className="flex flex-1 flex-row justify-center items-center"> | ||
<iframe | ||
src="https://shwephuehmone.vercel.app" | ||
className="h-full relative" | ||
/> | ||
</div> | ||
</div> | ||
</div> |