-
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.
♻️ refactor(styles): adding scss and folder structure
- Loading branch information
1 parent
3224f2c
commit 4b8a200
Showing
19 changed files
with
303 additions
and
207 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 |
---|---|---|
|
@@ -14,38 +14,40 @@ import Counter from "@/components/Contributors/Counter/Counter"; | |
import ContriSquareBox from "@/components/Contributors/ContriSquareBox/ContriSquareBox"; | ||
import SpacingDivider from "@/components/Common/SpacingDivider/SpacingDivider"; | ||
|
||
<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/49163775?v=4" /> | ||
<div className="lwinmoepaing"> | ||
<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/49163775?v=4" /> | ||
</div> | ||
<SpacingDivider size="sm"/> | ||
<h3 className="flex flex-row max-w-[240px] mx-auto"> | ||
<img | ||
src="https://raw.githubusercontent.com/lwinmoepaing/lwinmoepaing/main/img/gitto.gif" | ||
className="h-[20px] object-contain mr-2" | ||
/> | ||
<span> Hi, I'm Lwin Moe Paing </span> | ||
</h3> | ||
<SpacingDivider size="sm"/> | ||
<Counter /> | ||
<SpacingDivider size="sm"/> | ||
<ContriSquareBox> | ||
<p className="text-center text-sm mb-2"><img className="h-5 inline-block mr-1 relative -top-1" src="https://raw.githubusercontent.com/lwinmoepaing/lwinmoepaing/main/img/katto.gif"/>I’m looking for help with Javascript Language to build Many Free Softwares to help people who can't afford to pay!!</p> | ||
<p className="text-center text-sm mb-2"><img className="h-5 inline-block mr-1 relative -top-1" src="https://raw.githubusercontent.com/lwinmoepaing/lwinmoepaing/main/img/katto.gif"/>How to reach me **[email protected] (or) [facebook](https://www.facebook.com/lwin.im/)**</p> | ||
</ContriSquareBox> | ||
</div> | ||
<SpacingDivider size="sm"/> | ||
<h3 className="flex flex-row max-w-[240px] mx-auto"> | ||
<img | ||
src="https://raw.githubusercontent.com/lwinmoepaing/lwinmoepaing/main/img/gitto.gif" | ||
className="h-[20px] object-contain mr-2" | ||
/> | ||
<span> Hi, I'm Lwin Moe Paing </span> | ||
</h3> | ||
<SpacingDivider size="sm"/> | ||
<Counter /> | ||
<SpacingDivider size="sm"/> | ||
<ContriSquareBox> | ||
<p className="text-center text-sm mb-2"><img className="h-5 inline-block mr-1 relative -top-1" src="https://raw.githubusercontent.com/lwinmoepaing/lwinmoepaing/main/img/katto.gif"/>I’m looking for help with Javascript Language to build Many Free Softwares to help people who can't afford to pay!!</p> | ||
<p className="text-center text-sm mb-2"><img className="h-5 inline-block mr-1 relative -top-1" src="https://raw.githubusercontent.com/lwinmoepaing/lwinmoepaing/main/img/katto.gif"/>How to reach me **[email protected] (or) [facebook](https://www.facebook.com/lwin.im/)**</p> | ||
</ContriSquareBox> | ||
</div> | ||
<div className="flex flex-1 flex-row justify-center items-center"> | ||
<div className="ph-container"> | ||
<div className="phone"> | ||
<div className="notch-container"> | ||
<div className="notch"></div> | ||
<div className="flex flex-1 flex-row justify-center items-center"> | ||
<div className="ph-container"> | ||
<div className="phone"> | ||
<div className="notch-container"> | ||
<div className="notch"></div> | ||
</div> | ||
<iframe | ||
src="https://lwinmoepaing.github.io/" | ||
className="h-full relative" | ||
/> | ||
</div> | ||
<iframe | ||
src="https://lwinmoepaing.github.io/" | ||
className="h-full relative" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import MseTypo from "@/components/Animate/MseTypo/MseTypo"; | ||
import TitleText from "@/components/Common/TitleText/TitleText"; | ||
|
||
const loading = () => { | ||
return ( | ||
<div className="text-center"> | ||
<div className="max-w-[380px] mx-auto"> | ||
<MseTypo isWhite bgColor="bg-rose-500" /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
export default loading; |
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
Oops, something went wrong.