├── .gitignore ├── .postcssrc.js ├── .posthtmlrc ├── README.md ├── css └── app.css ├── img └── collaboration.svg ├── index.html ├── package.json ├── tailwind.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .cache/ 2 | dist/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | "plugins": [ 4 | require('tailwindcss')('./tailwind.js'), 5 | require('autoprefixer')(), 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.posthtmlrc: -------------------------------------------------------------------------------- 1 | { 2 | "lowerCaseAttributeNames": false 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rebuilding Netlify 2 | 3 | Source code for my ["Rebuilding Netlify" live stream](https://www.youtube.com/watch?v=_JhTaENzfZQ). 4 | 5 | To run locally: 6 | 7 | 1. Install [Parcel](https://github.com/parcel-bundler/parcel) 8 | 2. Clone this repo 9 | 3. Install this repo's dependencies using `npm install` or `yarn` 10 | 4. Run `parcel index.html` 11 | -------------------------------------------------------------------------------- /css/app.css: -------------------------------------------------------------------------------- 1 | @tailwind preflight; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /img/collaboration.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |54 | tailwindcss.com 55 |
56 |Deploys from GitHub. Owned by Adam Wathan
57 |Last update on Jul 11 (2 days ago)
58 |General information about your site
109 |This site is not using any add-ons
175 |Take your static site further with rich add-ons built right into your dashboard. Automatically upgrade tiers as your usage grows, paying only for what you use.
176 |177 | 178 | Learn more about pricing and usage 179 | 180 | 181 |
182 |Collaborate with others on this site
190 |Transfer your site to a team to activate collaboration features like multi-level administrator roles and visitor access control.
195 |196 | 197 | Learn more about our pricing 198 | 199 | 200 |
201 |Irreversible and destructive actions. Tread lightly
231 |Once you delete a site, there is no going back.
235 |