Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a minimal profile page for myself. Some SCSS. #146

Merged
merged 2 commits into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion content/profile/aungkhaingkhant.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,17 @@ tags:
- Frontend
- Backend
- RDBMS
---
---

<div className = "jiro flex flex-col content-center items-center">
<img src= "https://avatars.githubusercontent.com/u/55285418?v=4" className="profile"/>
<div className = "desc">
<p>Passionate Java Developer</p>
<p>Loves to learn.</p>
<p>I write mediocre code while acting like I know what I'm doing</p>
</div>
<div className = "flex flex-row content-center">
<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>
<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>
</div>
</div>
1 change: 1 addition & 0 deletions src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@
@import "profiles/aungmyatmoe";
@import "profiles/aungkoko";
@import "profiles/peter";
@import "profiles/jiro"
19 changes: 19 additions & 0 deletions src/styles/profiles/_jiro.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.profile{
border-radius: 50%;
height:200px;
width:200px;
}

.desc{
color:#31cd31;
border-radius: 40px;
border-bottom:5px solid rgb(115, 151, 171);
padding:20px;
margin-top:20px;
}

.icon{
height:30px;
width:30px;
margin:10px 10px;
}
Loading