Skip to content

Commit

Permalink
🔥 build(Profile): add Kaung Myat Soe Profile
Browse files Browse the repository at this point in the history
  • Loading branch information
lizzy-km authored Oct 22, 2023
1 parent ac99990 commit 80e54b9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/Profile/Vince/Project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ const Project = () => {
const [project, setProject] = useState<any>(false);

return (
<div class=" relative mt-[-125px] z-[99] bg-blur w-full flex flex-col items-center h-screen ">
<div class=" w-full h-[60px] border-b-2 border-[#1212] flex justify-between items-center gap-3 ">
<div className=" relative mt-[-125px] z-[99] bg-blur w-full flex flex-col items-center h-screen ">
<div className=" w-full h-[60px] border-b-2 border-[#1212] flex justify-between items-center gap-3 ">
<a
target="_blank"
href="https://themoviedb-org.vercel.app/"
class=" text-xl aa rounded-tr-3xl bg-cyan-700 flex justify-center items-center h-full w-[200px] cursor-pointer "
className=" text-xl aa rounded-tr-3xl bg-cyan-700 flex justify-center items-center h-full w-[200px] cursor-pointer "
>
<h1>TMDB Clone</h1>
</a>

<div class="flex h-full justify-center items-center rounded-t-3xl ">
<div className="flex h-full justify-center items-center rounded-t-3xl ">
<div
onClick={() => setProject(true)}
class="flex h-full w-[100px] border-r justify-center items-center px-[1rem] cursor-pointer loader-bg "
className="flex h-full w-[100px] border-r justify-center items-center px-[1rem] cursor-pointer loader-bg "
>
<p>Project</p>
</div>
<div
onClick={() => setProject(false)}
class="flex h-full w-[100px] justify-center items-center px-[1rem] cursor-pointer loader-bg "
className="flex h-full w-[100px] justify-center items-center px-[1rem] cursor-pointer loader-bg "
>
<p>Me</p>
</div>
Expand All @@ -33,15 +33,15 @@ const Project = () => {
<a
target="_blank"
href="https://anynote-m.vercel.app/"
class=" text-xl rounded-tl-3xl bg-cyan-700 flex justify-center items-center h-full w-[200px] cursor-pointer "
className=" text-xl rounded-tl-3xl bg-cyan-700 flex justify-center items-center h-full w-[200px] cursor-pointer "
>
<h1>Facebook Clone</h1>
</a>
</div>

{project ? (
<iframe
class=" w-[100%] h-[600px] "
className=" w-[100%] h-[600px] "
src="https://themoviedb-org.vercel.app/"
frameborder="0"
/>
Expand Down

0 comments on commit 80e54b9

Please sign in to comment.