From 1791258d2b29774073a45b4944edab5237c3cfa6 Mon Sep 17 00:00:00 2001 From: Coding-NyeinMinhtet <95125660+nyeinminhtet@users.noreply.github.com> Date: Mon, 30 Oct 2023 22:51:42 +0630 Subject: [PATCH] :fire: build(profile): add nyeinminhtet profile (#136) --- content/profile/ngwesinsandar.mdx | 31 +++++----- content/profile/nyeinminhtet.mdx | 35 +++++++++++ content/profile/nyinyiaung.mdx | 59 ++++++++++-------- .../nyeinminhtet/Nyeinminhtet.tsx | 62 +++++++++++++++++++ 4 files changed, 145 insertions(+), 42 deletions(-) create mode 100644 content/profile/nyeinminhtet.mdx create mode 100644 src/components/Contributors/nyeinminhtet/Nyeinminhtet.tsx diff --git a/content/profile/ngwesinsandar.mdx b/content/profile/ngwesinsandar.mdx index 7173863..83930fd 100644 --- a/content/profile/ngwesinsandar.mdx +++ b/content/profile/ngwesinsandar.mdx @@ -3,19 +3,16 @@ name: Ngwe Sin Sandar description: just a developer falling in love with coding image: "https://avatars.githubusercontent.com/u/106171887?v=4" tags: -- Frontend -- JavaScript -- ReactJS -- VueJS -- NextJS -- PHP -- Laravel + - Frontend + - JavaScript + - ReactJS + - VueJS + - NextJS + - PHP + - Laravel --- -import { - IoLogoFacebook, - IoLogoGithub -} from "react-icons/io5"; +import { IoLogoFacebook, IoLogoGithub } from "react-icons/io5"; import { BsArrowDownLeftCircleFill } from "react-icons/bs";
@@ -50,13 +47,14 @@ import { BsArrowDownLeftCircleFill } from "react-icons/bs"; class AboutMe { public $name, $relationship; - public function __construct(string $name, string $relationship) { - $this->name = $name; - $this->relationship = $relationship; - } +public function \_\_construct(string $name, string $relationship) { +$this->name = $name; +$this->relationship = $relationship; +} } const about_me = new AboutMe("Ngwe Sin Sandar", "single"); + ``` @@ -85,4 +83,5 @@ const about_me = new AboutMe("Ngwe Sin Sandar", "single"); -
\ No newline at end of file + +``` diff --git a/content/profile/nyeinminhtet.mdx b/content/profile/nyeinminhtet.mdx new file mode 100644 index 0000000..1068c89 --- /dev/null +++ b/content/profile/nyeinminhtet.mdx @@ -0,0 +1,35 @@ +--- +name: Nyein Min Htet +description: I'm trying to become a web developer. I think I'm not good at programming but I'm still doing. +image: "https://avatars.githubusercontent.com/u/95125660?v=4" +tags: + - Html + - Css + - JavaScript + - ReactJs + - NextJs + - NodeJs +--- + +import Nyeinminhtet from "@/components/Contributors/nyeinminhtet/Nyeinminhtet"; + +
+ +
+ +```typescript +const about_me: Person = { + name: "NyeinMinHtet", + relationship: "single", + hobby: ["playing football", "listening music", "reading"], + language: "JavaScript", + Framework: "ReactJs,NextJs", +}; + +console.log( + `My name is ${about_me.name} and I'm learning ${about_me.Framework}. When I'm free I always ${about_me.hobby[1]}.` +); +``` + +
+
diff --git a/content/profile/nyinyiaung.mdx b/content/profile/nyinyiaung.mdx index fcfb886..870e225 100644 --- a/content/profile/nyinyiaung.mdx +++ b/content/profile/nyinyiaung.mdx @@ -11,39 +11,46 @@ tags: - JavaScript --- -
- -

Nyi Nyi Aung

+ +

Nyi Nyi Aung

-

Hello👋👋 I'm a junior developer and I love to learn new things and languages. I started learning programming in 2022 and I stopped this for months. I'm recently learning in this with foucsing and for my dream. I wanna create application like facebook and twitter in the future. My goal is to be a software enginner and for this I'm always learning. Thank you for reading 🥰❤️🥰.

+

+ Hello👋👋 I'm a junior developer and I love to learn new things and + languages. I started learning programming in 2022 and I stopped this for + months. I'm recently learning in this with foucsing and for my dream. I + wanna create application like facebook and twitter in the future. My goal is + to be a software enginner and for this I'm always learning. Thank you for + reading 🥰❤️🥰.{" "} +

- -
- - - - firebase + - - + + firebase + + +
- diff --git a/src/components/Contributors/nyeinminhtet/Nyeinminhtet.tsx b/src/components/Contributors/nyeinminhtet/Nyeinminhtet.tsx new file mode 100644 index 0000000..83a2098 --- /dev/null +++ b/src/components/Contributors/nyeinminhtet/Nyeinminhtet.tsx @@ -0,0 +1,62 @@ +import React from "react"; +import { IoLogoFacebook, IoLogoGithub } from "react-icons/io5"; + +import { motion } from "framer-motion"; + +const Nyeinminhtet = () => { + return ( +
+
+
+ + N + + yein +
+
+ + M + + in +
+ +
+ + H + + tet +
+
+ +
+ + + + + + + + portfolio_photo + +
+
+ ); +}; + +export default Nyeinminhtet;