├── .gitignore ├── LICENSE ├── README.md └── images ├── common └── logo-sample.jpeg └── stack ├── css.svg ├── figma.svg ├── html.svg ├── javascript.svg ├── nextjs.svg ├── node.svg ├── notion.svg ├── react-native.svg ├── react.svg └── typescript.svg /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Ji-Hun Jeon 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 프로젝트 이름 2 | 3 |

4 |
5 | 6 |
7 |

8 | 9 | 목차 10 | 11 | ## 프로젝트 소개 12 | 13 |

14 | 프로젝트 개요/동기 15 |

16 | 17 |

18 | GIF Images 19 |

20 | 21 |
22 | 23 | ## 기술 스택 24 | 25 | | JavaScript | TypeScript | React | Node | 26 | | :--------: | :--------: | :------: | :-----: | 27 | | ![js] | ![ts] | ![react] | ![node] | 28 | 29 |
30 | 31 | ## 구현 기능 32 | 33 | ### 기능 1 34 | 35 | ### 기능 2 36 | 37 | ### 기능 3 38 | 39 | ### 기능 4 40 | 41 |
42 | 43 | ## 배운 점 & 아쉬운 점 44 | 45 |

46 | 47 |

48 | 49 |
50 | 51 | ## 라이센스 52 | 53 | MIT © [NoHack](mailto:lbjp114@gmail.com) 54 | 55 | 56 | 57 | [js]: /images/stack/javascript.svg 58 | [ts]: /images/stack/typescript.svg 59 | [react]: /images/stack/react.svg 60 | [node]: /images/stack/node.svg 61 | -------------------------------------------------------------------------------- /images/common/logo-sample.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0hack/readme-template/da870eab8e4ee69e6990f9e2e560719d2ef0ad86/images/common/logo-sample.jpeg -------------------------------------------------------------------------------- /images/stack/css.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/stack/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/stack/html.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/stack/javascript.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/stack/nextjs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /images/stack/node.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/stack/notion.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/stack/react-native.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/stack/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/stack/typescript.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------