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
---
- 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<br />
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 |

View file

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

View file

@ -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

View file

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

View file

@ -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<Item> = [
path: "/about",
icon: <FontAwesomeIcon icon={faIdCard} />,
},
{
title: "Contact",
path: "/contact",
icon: <FontAwesomeIcon icon={faComments} />,
},
{
title: "Portfolio",
path: "/portfolio",
icon: <FontAwesomeIcon icon={faUserTie} />,
},
]
export default NavbarData