Skip to content

Commit a8ab3a3

Browse files
authored
Merge pull request #146 from jironemo/main
Added a minimal profile page for myself. Some SCSS.
2 parents 6834c3e + 6759abc commit a8ab3a3

3 files changed

Lines changed: 34 additions & 1 deletion

File tree

content/profile/aungkhaingkhant.mdx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,17 @@ tags:
99
- Frontend
1010
- Backend
1111
- RDBMS
12-
---
12+
---
13+
14+
<div className = "jiro flex flex-col content-center items-center">
15+
<img src= "https://avatars.githubusercontent.com/u/55285418?v=4" className="profile"/>
16+
<div className = "desc">
17+
<p>Passionate Java Developer</p>
18+
<p>Loves to learn.</p>
19+
<p>I write mediocre code while acting like I know what I'm doing</p>
20+
</div>
21+
<div className = "flex flex-row content-center">
22+
<a href="https://www.github.com/jironemo/" target= "_blank" className = "flex flex-row content-center items-center"> <img className = "icon" src="https://cdn-icons-png.flaticon.com/512/25/25231.png"/></a>
23+
<a href="https://www.facebook.com/jiro.dev/" className = "flex flex-row content-center items-center"> <img className = "icon" src="https://upload.wikimedia.org/wikipedia/commons/6/6c/Facebook_Logo_2023.png"/></a>
24+
</div>
25+
</div>

src/styles/globals.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@
1717
@import "profiles/aungmyatmoe";
1818
@import "profiles/aungkoko";
1919
@import "profiles/peter";
20+
@import "profiles/jiro"

src/styles/profiles/_jiro.scss

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.profile{
2+
border-radius: 50%;
3+
height:200px;
4+
width:200px;
5+
}
6+
7+
.desc{
8+
color:#31cd31;
9+
border-radius: 40px;
10+
border-bottom:5px solid rgb(115, 151, 171);
11+
padding:20px;
12+
margin-top:20px;
13+
}
14+
15+
.icon{
16+
height:30px;
17+
width:30px;
18+
margin:10px 10px;
19+
}

0 commit comments

Comments
 (0)