├── .editorconfig ├── .gitignore ├── README.md ├── assets ├── README.md ├── data │ ├── article.json │ ├── history.json │ ├── news.json │ ├── program.json │ └── schedule.json └── scss │ └── global.scss ├── components ├── Colorbanner.vue ├── Emailbox.vue ├── Footer.vue ├── Herobanner.vue ├── Keywordbox.vue ├── Navbar.vue ├── Program.vue ├── README.md ├── Rankbox.vue ├── Schedule.vue ├── Timeline.vue └── card │ ├── Article.vue │ ├── History.vue │ └── Schedule.vue ├── layouts ├── README.md └── default.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── README.md ├── about.vue ├── helloworld.vue ├── index.vue ├── news.vue └── program.vue ├── plugins ├── README.md └── vue-carousel.js ├── static ├── README.md └── favicon.ico ├── store └── README.md └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/data/article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/assets/data/article.json -------------------------------------------------------------------------------- /assets/data/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/assets/data/history.json -------------------------------------------------------------------------------- /assets/data/news.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/assets/data/news.json -------------------------------------------------------------------------------- /assets/data/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/assets/data/program.json -------------------------------------------------------------------------------- /assets/data/schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/assets/data/schedule.json -------------------------------------------------------------------------------- /assets/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/assets/scss/global.scss -------------------------------------------------------------------------------- /components/Colorbanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/Colorbanner.vue -------------------------------------------------------------------------------- /components/Emailbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/Emailbox.vue -------------------------------------------------------------------------------- /components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/Footer.vue -------------------------------------------------------------------------------- /components/Herobanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/Herobanner.vue -------------------------------------------------------------------------------- /components/Keywordbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/Keywordbox.vue -------------------------------------------------------------------------------- /components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/Navbar.vue -------------------------------------------------------------------------------- /components/Program.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/Program.vue -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/README.md -------------------------------------------------------------------------------- /components/Rankbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/Rankbox.vue -------------------------------------------------------------------------------- /components/Schedule.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/Schedule.vue -------------------------------------------------------------------------------- /components/Timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/Timeline.vue -------------------------------------------------------------------------------- /components/card/Article.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/card/Article.vue -------------------------------------------------------------------------------- /components/card/History.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/card/History.vue -------------------------------------------------------------------------------- /components/card/Schedule.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/components/card/Schedule.vue -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/pages/about.vue -------------------------------------------------------------------------------- /pages/helloworld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/pages/helloworld.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/news.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/pages/news.vue -------------------------------------------------------------------------------- /pages/program.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/pages/program.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/vue-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/plugins/vue-carousel.js -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/static/README.md -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/store/README.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/NaverD2CloneCoding/HEAD/yarn.lock --------------------------------------------------------------------------------