-
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.
🔥 build(profile): add lwinmoepaing profile
- Loading branch information
1 parent
02e6771
commit 010eedf
Showing
7 changed files
with
90 additions
and
12 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
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 |
---|---|---|
@@ -1,16 +1,29 @@ | ||
--- | ||
name: Sample | ||
description: I'm software developer | ||
name: Lwin Moe Paing | ||
description: I'm senior frontend engineers and looking for help with **Javascript Language to build Many Free Softwares to help people who can't afford to pay !! | ||
image: "https://avatars.githubusercontent.com/u/49163775?v=4" | ||
tags: | ||
- Fullstack | ||
- Frontend | ||
- JavaScript | ||
- ReactJS | ||
- SolidJS | ||
--- | ||
|
||
<h3 align="left" className="flex flex-row mt-2"> | ||
<div className="h-28 w-28 rounded-full overflow-hidden mx-auto"> | ||
<img src="https://avatars.githubusercontent.com/u/49163775?v=4" /> | ||
</div> | ||
|
||
<h3 className="flex flex-row max-w-[240px] mt-5 mx-auto"> | ||
<img | ||
src="https://raw.githubusercontent.com/lwinmoepaing/lwinmoepaing/main/img/gitto.gif" | ||
className="h-[20px] object-contain" | ||
className="h-[20px] object-contain mr-2" | ||
/> | ||
<span> Hi, I'm Lwin Moe Paing </span> | ||
</h3> | ||
|
||
<div className="container max-w-[720px] mx-auto"> | ||
|
||
- 🤝 I’m looking for help with **Javascript Language to build Many Free Softwares to help people who can't afford to pay !!** | ||
- 💬 Ask me about **React, React Native & Nodejs.** | ||
- 📫 How to reach me **[email protected] (or) [facebook](https://www.facebook.com/lwin.im/)** | ||
|
@@ -49,4 +62,6 @@ const Lwin = { | |
architecture: ["Microservices", "Event-Driven", "Design System Pattern"], | ||
challenge: "Nothing in life is permanent. so i'm trying to be always humble", | ||
}; | ||
``` | ||
``` | ||
|
||
</div> |
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
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
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
import Container from "@/components/Common/Container/Container"; | ||
import { titleFont } from "@/fonts/fonts"; | ||
import styles from "@/styles/styles"; | ||
import { cn } from "@/utils"; | ||
|
||
export default function ProfileLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode; | ||
}) { | ||
return <Container className={styles.paddingHelper}>{children}</Container>; | ||
return ( | ||
<Container className={cn(styles.paddingHelper, titleFont.className)}> | ||
{children} | ||
</Container> | ||
); | ||
} |
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
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