-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
103 additions
and
10 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
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,24 @@ | ||
|
||
export default function Box() { | ||
return ( | ||
<> | ||
<div className="flex flex-col justify-end items-center bottom-0 border border-black h-[70vh]"> | ||
<div className="box"> | ||
<div className="box__face box__face--front"></div> | ||
<div className="box__face box__face--top"></div> | ||
<div className="box__face box__face--left"> | ||
<br/> | ||
<h1 className="ml-4">My Stack</h1> | ||
</div> | ||
<div className="relative box__face box__face--right"> | ||
<img src="/web-icon.png" className="hidden border border-black h-6 w-6 absolute bottom-0 right-0 m-2 [transform:rotateY(10deg)]"> | ||
</img> | ||
<img src="/info-icon.png" className="hidden border border-black h-6 w-6 absolute bottom-0 right-7 m-2 [transform:rotateY(10deg)]"> | ||
</img> | ||
</div> | ||
<div className="box__face box__face--back"></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