Skip to content

Commit

Permalink
🚚 chore(remove): unnecessary my code
Browse files Browse the repository at this point in the history
  • Loading branch information
lwinmoepaing committed Oct 22, 2023
1 parent 267d789 commit a3bf184
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
9 changes: 0 additions & 9 deletions content/profile/lwinmoepaing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,6 @@ 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">
{/* <ProfileCardItem
_id="lwinmoepaing"
slugAsParams="lwinmoepaing"
name="Lwin Moe Paing"
description="I'm senior frontend engineer and looking for help with JS 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"]}
searchTag=""
/> */}
<div className="h-28 w-28 rounded-3xl overflow-hidden mx-auto">
<img src="https://avatars.githubusercontent.com/u/49163775?v=4" />
</div>
Expand Down
4 changes: 3 additions & 1 deletion src/components/Ui/SquareBox/SquareBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@ import styles from "@/styles/styles";

type TSquareBox = PropsWithChildren<{
className?: string;
onClick?: () => void;
}>;

const SquareBox = ({ children, className = "" }: TSquareBox) => {
const SquareBox = ({ children, className = "", onClick }: TSquareBox) => {
return (
<div
className={cn(
"relative bg-white bg-opacity-10 rounded-2xl py-5 overflow-hidden ",
styles.paddingHelper,
className
)}
onClick={onClick}
>
<div className={cn(styles.squareAbsolute, styles.squareBackground)}></div>
<div className="relative">{children}</div>
Expand Down

0 comments on commit a3bf184

Please sign in to comment.