Skip to content

Commit ae237b6

Browse files
🔥 build(profile): add minhankyaw profile (#161)
Co-authored-by: Min Han Kyaw <mhk@mit.com.mm>
1 parent 6426e2f commit ae237b6

11 files changed

Lines changed: 531 additions & 8 deletions

File tree

content/profile/minhankyaw.mdx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Min Han Kyaw
3+
description: A Software Engineer who love Tech.
4+
image: "https://avatars.githubusercontent.com/u/90894979?s=400&u=52f3d0baa76b5b547ba68a11a0eec071a1b6487c&v=4"
5+
tags:
6+
- Python
7+
- Node.js
8+
- PHP
9+
- Flutter
10+
- React
11+
- C#
12+
- AWS
13+
---
14+
15+
import MinHanKyaw from "@/components/Contributors/MinHanKyaw/MinHanKyaw";
16+
17+
<div style={{ fontFamily: 'Helvetica Neue, sans-serif', background: '#fafafa' }}>
18+
<MinHanKyaw />
19+
</div>
20+
{/* */}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import TimelineHeader from './timelineHeader';
2+
import Intro from './intro';
3+
import Photos from './photos';
4+
import CreatePost from './createPost';
5+
import MainPost from './mainPost';
6+
7+
export default function MinHanKyaw() {
8+
return (
9+
<div className="antialiased">
10+
<TimelineHeader />
11+
12+
<div className="bg-gray-200 bg-opacity-80 px-52 grid grid-cols-12 pt-4 gap-4 z-0 pb-56">
13+
<div className="col-span-5 col-start-1 row-start-1 space-y-4">
14+
<Intro />
15+
<Photos />
16+
</div>
17+
<div className="flex-row row-start-1 col-span-7 col-start-6 space-y-4">
18+
<CreatePost />
19+
<MainPost />
20+
</div>
21+
</div>
22+
</div>
23+
);
24+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
// import Image from '../icons/image';
2+
// import Feeling from '../icons/feeling';
3+
// import Tag from '../icons/tag';
4+
import { Image,Feeling,Tag } from "./icons";
5+
6+
export default function CreatePost() {
7+
return (
8+
<div>
9+
<div className="w-full rounded-lg bg-white p-4">
10+
<div className="flex space-x-2">
11+
<img
12+
src="https://drive.google.com/uc?export=view&id=1N1-Wu9SeVi5Mscl3elGopCnLDq3j_dNZ"
13+
alt="img"
14+
className="h-10 w-10 rounded-full object-cover"
15+
/>
16+
<input
17+
className="bg-gray-200 bg-opacity-80 px-4 py-3 w-full focus:outline-none rounded-full"
18+
placeholder="Write something to ko kyaw gyi ..."
19+
/>
20+
</div>
21+
{/* <div className="border border-fGray border-opacity-10 mt-4" /> */}
22+
<div className="flex justify-between">
23+
<button className="flex justify-center items-center w-1/3 focus:outline-none mt-4 py-2">
24+
<Image />
25+
<div className="text-gray-500 text-sm ml-2">
26+
Photo/Video
27+
</div>
28+
</button>
29+
<button className="flex justify-center items-center w-1/3 focus:outline-none mt-4 py-2">
30+
<Tag />
31+
<div className="text-gray-500 text-sm ml-2">
32+
Tag Friends
33+
</div>
34+
</button>
35+
<button className="flex justify-center items-center w-1/3 focus:outline-none mt-4 py-2">
36+
<Feeling />
37+
<div className="text-gray-500 text-sm ml-2">
38+
Feelling/Activity
39+
</div>
40+
</button>
41+
</div>
42+
</div>
43+
</div>
44+
);
45+
}
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
// import { FaFacebook, FaLinkedin } from 'react-icons/fa';
2+
3+
export function PhoneDialog({ isOpen, onClose }) {
4+
if (!isOpen) return null;
5+
6+
return (
7+
<div className="fixed top-0 left-0 w-full h-full flex justify-center items-center bg-black bg-opacity-75">
8+
<div className="bg-white p-4 rounded-lg shadow-md">
9+
<div className="text-xl mb-4 text-black flex items-center justify-between">
10+
Call me maybe 🤙🏻
11+
<span className="text-xs text-gray-500"> ( ဘီယာတိုက်ရမှာနော် 😆 )</span>
12+
</div>
13+
14+
15+
<div className="text-sm mb-4 flex justify-end text-black">+959 965 887 7879</div>
16+
<div className="flex justify-end">
17+
<button className="bg-blue-500 text-white px-4 py-2 rounded-lg" onClick={onClose}>
18+
Okay Pr -_-
19+
</button>
20+
</div>
21+
</div>
22+
</div>
23+
);
24+
}
25+
26+
27+
export function MailDialog({ isOpen, onClose }) {
28+
if (!isOpen) return null;
29+
30+
return (
31+
<div className="fixed top-0 left-0 w-full h-full flex justify-center items-center bg-black bg-opacity-75">
32+
<div className="bg-white p-4 rounded-lg shadow-md">
33+
<div className="text-xl mb-4 text-black"> somethingiswrongwithmyspacebar </div>
34+
<div className="text-sm mb-4 flex justify-end text-black">minhankyaw.mh@gmail.com</div>
35+
<div className="flex justify-end">
36+
<button className="bg-blue-500 text-white px-4 py-2 rounded-lg" onClick={onClose}>
37+
ar ar yr yr -_-
38+
</button>
39+
</div>
40+
</div>
41+
</div>
42+
);
43+
}
44+
45+
export function MoreDialog({ isOpen, onClose }) {
46+
if (!isOpen) return null;
47+
48+
return (
49+
<div className="fixed top-0 left-0 w-full h-full flex justify-center items-center bg-black bg-opacity-75">
50+
<div className="bg-white p-4 rounded-lg shadow-md text-center">
51+
<div className="text-lg mb-4 text-black">ဘာညာ အာချောင်ချင်ရင် 😎</div>
52+
<div className="flex justify-center mb-4">
53+
<a className="bg-blue-500 w-12 h-9 rounded-lg m-2 flex items-center justify-center" href="https://www.facebook.com/novaroption/" target="_blank" rel="noopener noreferrer">
54+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#ffffff" width="18" height="18">
55+
<path d="M12 0C5.373 0 0 5.373 0 12c0 6.626 5.373 12 12 12 6.627 0 12-5.374 12-12 0-6.627-5.373-12-12-12zm5.648 6.51h-3.388c-.68 0-1.235.554-1.235 1.235v3.39h2.488l-.646 2.595H12.34v6.87H8.965v-6.87H6.122V9.34h2.843V6.175C8.965 3.095 10.573 1.41 13.658 1.41c.782 0 1.466.062 1.648.09v2.01z"/>
56+
</svg>
57+
</a>
58+
<a className="bg-blue-500 w-12 h-9 rounded-lg m-2 flex items-center justify-center" href="https://www.linkedin.com/in/min-han-kyaw-2a1455189/" target="_blank" rel="noopener noreferrer">
59+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#ffffff" width="18" height="18">
60+
<path d="M3.862 18H.275V5.976h3.587V18zM2.068 4.727C.926 4.727 0 3.8 0 2.664s.926-2.063 2.068-2.063 2.068.927 2.068 2.063c0 1.137-.927 2.063-2.068 2.063zM18 18h-3.588v-5.404c0-1.288-.025-2.942-1.788-2.942-1.789 0-2.063 1.398-2.063 2.91V18H7.517V5.976h3.587v1.51h.05c.5-.948 1.72-1.946 3.542-1.946C16.139 5.54 18 7.607 18 11.067V18z"/>
61+
</svg>
62+
</a>
63+
</div>
64+
<div className="flex justify-end">
65+
<button className="bg-blue-500 text-white px-4 py-2 rounded-lg" onClick={onClose}>
66+
‌အေးဆေးနေပါရစေ 🥲
67+
</button>
68+
</div>
69+
</div>
70+
</div>
71+
);
72+
}

0 commit comments

Comments
 (0)