diff --git a/source/markdown/unsearchable/about.md b/source/markdown/unsearchable/about.md index 9ef6040..1a1a4e2 100644 --- a/source/markdown/unsearchable/about.md +++ b/source/markdown/unsearchable/about.md @@ -2,11 +2,20 @@ title: About --- -- About me +## Me - - Email: developomp@gmail.com - - Discord: developomp#0001 (snowflake: 501277805540147220) - - [Github profile](https://github.com/developomp) - - [Portfolio](/portfolio) - - me as a person - - [goals](/goals) +Name: Jimin Kim
+Location: South Korea +Age: 19 + +## Links + +- [Github](https://github.com/developomp) +- [goals](/goals) + +## Contact + +| Type | Details | +| ------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------- | +| [![discord](https://img.shields.io/badge/discord-5865F2?style=for-the-badge&logo=discord&logoColor=white)](https://discord.com) | developomp#0001 (501277805540147220) | +| [![gmail](https://img.shields.io/badge/gmail-FF0027?style=for-the-badge&logo=gmail&logoColor=white)](https://mail.google.com) | developomp@gmail.com | diff --git a/source/markdown/unsearchable/contact.md b/source/markdown/unsearchable/contact.md deleted file mode 100644 index aa66635..0000000 --- a/source/markdown/unsearchable/contact.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Contact ---- - -contact!! diff --git a/source/markdown/unsearchable/goals.md b/source/markdown/unsearchable/goals.md index 812d2e7..0e8094c 100644 --- a/source/markdown/unsearchable/goals.md +++ b/source/markdown/unsearchable/goals.md @@ -2,16 +2,26 @@ title: Goals --- -My goals: +## Programming -- skill - - type 400 letters per minute (both english and korean) -- milestone - - make a high quality video with at least 1M views on YouTube - - 1000 star on a gh repository - - completely switch to RISC based CPU powered laptop -- project - - make a discord bot that can rival the big names (dyno, carl, etc.) - - make a multiplayer game that can pay for itself - - assemble my own mechanical keyboard - - get my code in the linux kernel +- Get a total of 1000 star on github +- Complete a medium-sized project using C (C++ go away) +- Complete a medium-sized project using Golang +- Complete a medium-sized project using Electron +- Make my own programming language +- Make a discord bot that can rival the big names (Dyno, Carl, etc.) +- Get my code in the linux kernel + +## Skill + +- Learn how to type at least 400 letters per minute (both english and korean) +- Learn how t type without looking at keyboard +- Learn how to read microexpressions +- Learn how to speak Chinese +- Learn how to speak Japanese + +## Internet + +- Make a high quality video with at least 1M views on YouTube +- Get 1k followers on twitch +- Reach 1k concurrent viewers on twitch diff --git a/source/markdown/unsearchable/portfolio.md b/source/markdown/unsearchable/portfolio.md deleted file mode 100644 index 0c1cb1d..0000000 --- a/source/markdown/unsearchable/portfolio.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Portfolio ---- - -Portfolio!! diff --git a/source/src/data/NavbarData.tsx b/source/src/data/NavbarData.tsx index 23190e1..938dafb 100644 --- a/source/src/data/NavbarData.tsx +++ b/source/src/data/NavbarData.tsx @@ -1,10 +1,5 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" -import { - faComments, - faHome, - faIdCard, - faUserTie, -} from "@fortawesome/free-solid-svg-icons" +import { faHome, faIdCard } from "@fortawesome/free-solid-svg-icons" // item from sidebar data export type Item = { @@ -27,16 +22,6 @@ const NavbarData: Array = [ path: "/about", icon: , }, - { - title: "Contact", - path: "/contact", - icon: , - }, - { - title: "Portfolio", - path: "/portfolio", - icon: , - }, ] export default NavbarData