removed portfolio and contact page

This commit is contained in:
Kim, Jimin 2021-09-27 14:01:07 +09:00
parent 67d62676e3
commit bb944472b4
5 changed files with 39 additions and 45 deletions

View file

@ -2,11 +2,20 @@
title: About title: About
--- ---
- About me ## Me
- Email: developomp@gmail.com Name: Jimin Kim<br />
- Discord: developomp#0001 (snowflake: 501277805540147220) Location: South Korea
- [Github profile](https://github.com/developomp) Age: 19
- [Portfolio](/portfolio)
- me as a person ## Links
- [Github](https://github.com/developomp)
- [goals](/goals) - [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 |

View file

@ -1,5 +0,0 @@
---
title: Contact
---
contact!!

View file

@ -2,16 +2,26 @@
title: Goals title: Goals
--- ---
My goals: ## Programming
- skill - Get a total of 1000 star on github
- type 400 letters per minute (both english and korean) - Complete a medium-sized project using C (C++ go away)
- milestone - Complete a medium-sized project using Golang
- make a high quality video with at least 1M views on YouTube - Complete a medium-sized project using Electron
- 1000 star on a gh repository - Make my own programming language
- completely switch to RISC based CPU powered laptop - Make a discord bot that can rival the big names (Dyno, Carl, etc.)
- project - Get my code in the linux kernel
- make a discord bot that can rival the big names (dyno, carl, etc.)
- make a multiplayer game that can pay for itself ## Skill
- assemble my own mechanical keyboard
- get my code in the linux kernel - 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

View file

@ -1,5 +0,0 @@
---
title: Portfolio
---
Portfolio!!

View file

@ -1,10 +1,5 @@
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import { import { faHome, faIdCard } from "@fortawesome/free-solid-svg-icons"
faComments,
faHome,
faIdCard,
faUserTie,
} from "@fortawesome/free-solid-svg-icons"
// item from sidebar data // item from sidebar data
export type Item = { export type Item = {
@ -27,16 +22,6 @@ const NavbarData: Array<Item> = [
path: "/about", path: "/about",
icon: <FontAwesomeIcon icon={faIdCard} />, icon: <FontAwesomeIcon icon={faIdCard} />,
}, },
{
title: "Contact",
path: "/contact",
icon: <FontAwesomeIcon icon={faComments} />,
},
{
title: "Portfolio",
path: "/portfolio",
icon: <FontAwesomeIcon icon={faUserTie} />,
},
] ]
export default NavbarData export default NavbarData