├── .gitignore ├── .prettierrc.js ├── README.md ├── components ├── Date.js ├── Footer.js └── Post.js ├── lib └── posts.js ├── package.json ├── pages ├── _app.js └── index.js ├── postcss.config.js ├── posts ├── 01.md ├── 02.md ├── 03.md ├── 04.md ├── 05.md ├── 07.md ├── 08.md ├── 09.md ├── 10.md ├── 11.md ├── 12.md ├── 13.md ├── 14.md ├── 15.md ├── 16.md ├── 17.md ├── 18.md ├── 19.md ├── 20.md ├── 21.md ├── 22.md ├── 23.md ├── 24.md ├── 25.md ├── 26.md ├── 27.md ├── 28.md ├── 29.md └── 30.md ├── public ├── favicon.ico ├── images │ ├── break.png │ ├── event-propagation.png │ ├── line-height.png │ ├── pipelining.png │ └── sematic-html.png └── we-build.svg ├── styles └── global.css ├── tailwind.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/README.md -------------------------------------------------------------------------------- /components/Date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/components/Date.js -------------------------------------------------------------------------------- /components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/components/Footer.js -------------------------------------------------------------------------------- /components/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/components/Post.js -------------------------------------------------------------------------------- /lib/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/lib/posts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/pages/index.js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/postcss.config.js -------------------------------------------------------------------------------- /posts/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/01.md -------------------------------------------------------------------------------- /posts/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/02.md -------------------------------------------------------------------------------- /posts/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/03.md -------------------------------------------------------------------------------- /posts/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/04.md -------------------------------------------------------------------------------- /posts/05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/05.md -------------------------------------------------------------------------------- /posts/07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/07.md -------------------------------------------------------------------------------- /posts/08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/08.md -------------------------------------------------------------------------------- /posts/09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/09.md -------------------------------------------------------------------------------- /posts/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/10.md -------------------------------------------------------------------------------- /posts/11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/11.md -------------------------------------------------------------------------------- /posts/12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/12.md -------------------------------------------------------------------------------- /posts/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/13.md -------------------------------------------------------------------------------- /posts/14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/14.md -------------------------------------------------------------------------------- /posts/15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/15.md -------------------------------------------------------------------------------- /posts/16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/16.md -------------------------------------------------------------------------------- /posts/17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/17.md -------------------------------------------------------------------------------- /posts/18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/18.md -------------------------------------------------------------------------------- /posts/19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/19.md -------------------------------------------------------------------------------- /posts/20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/20.md -------------------------------------------------------------------------------- /posts/21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/21.md -------------------------------------------------------------------------------- /posts/22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/22.md -------------------------------------------------------------------------------- /posts/23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/23.md -------------------------------------------------------------------------------- /posts/24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/24.md -------------------------------------------------------------------------------- /posts/25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/25.md -------------------------------------------------------------------------------- /posts/26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/26.md -------------------------------------------------------------------------------- /posts/27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/27.md -------------------------------------------------------------------------------- /posts/28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/28.md -------------------------------------------------------------------------------- /posts/29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/29.md -------------------------------------------------------------------------------- /posts/30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/posts/30.md -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/public/images/break.png -------------------------------------------------------------------------------- /public/images/event-propagation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/public/images/event-propagation.png -------------------------------------------------------------------------------- /public/images/line-height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/public/images/line-height.png -------------------------------------------------------------------------------- /public/images/pipelining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/public/images/pipelining.png -------------------------------------------------------------------------------- /public/images/sematic-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/public/images/sematic-html.png -------------------------------------------------------------------------------- /public/we-build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/public/we-build.svg -------------------------------------------------------------------------------- /styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/styles/global.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congdv/30daysofsharing/HEAD/yarn.lock --------------------------------------------------------------------------------