-
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 #138 from Sanyuaung/sanyuaung
🔥 build(profile): add sanyuaung profile
- Loading branch information
Showing
1 changed file
with
62 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,62 @@ | ||
--- | ||
name: San Yu Aung | ||
description: "4+ years self-learned, built banking web portal. 2+ years PHP web dev experience." | ||
image: "https://avatars.githubusercontent.com/u/73920052?v=4" | ||
tags: | ||
- Fullstack | ||
- Backend | ||
- Laravel | ||
- Vue | ||
- Angular | ||
- PHP | ||
- MySQL | ||
- GitHub | ||
--- | ||
|
||
<div class="text-2xl flex flex-row max-w-[200px] mt-5 mx-auto text-lg text-center text-yellow-500 font-bold animate-[wiggle_1s_ease-in-out_infinite]"> | ||
<p className="-rotate-45" style={{ color: "#39ff14" }}> | ||
Hello!!! | ||
</p> | ||
</div> | ||
|
||
<div className="h-28 w-28 rounded-full overflow-hidden mx-auto"> | ||
<img src="https://avatars.githubusercontent.com/u/73920052?v=4" /> | ||
</div> | ||
|
||
<h1 | ||
className="flex flex-row max-w-[200px] mt-5 mx-auto text-lg text-center font-bold" | ||
style={{ color: "#39ff14" }} | ||
> | ||
I'm San Yu Aung | ||
</h1> | ||
|
||
<div className="text-center"> | ||
<details className="relative mx-auto my-5"> | ||
<summary className="absolute left-[50%] -translate-x-[50%] top-[100px] inline-block cursor-pointer"> | ||
<div | ||
className="bg-blue-500 text-white font-bold py-2 px-4 rounded-full transform transition-transform hover:scale-150" | ||
style={{ color: "#39ff14" }} | ||
> | ||
Open Sesame | ||
</div> | ||
</summary> | ||
<div> | ||
<iframe | ||
src="https://sanyuaung.github.io/mmswe/" | ||
title="San Yu Aung" | ||
width="110%" | ||
height="750" | ||
style={{ border: "none" }} | ||
></iframe> | ||
</div> | ||
</details> | ||
<style> | ||
{` | ||
details[open] summary { | ||
height: 0; | ||
overflow: hidden; | ||
visibility: hidden; | ||
} | ||
`} | ||
</style> | ||
</div> |