A simple landing page using the CSS framework Tailwind in a proper PostCSS environment.
Live demo: https://tailwindcss-landingpage-example.netlify.com/
Install the dependencies:
# Using npm
npm install
Start the development server:
# Using npm
npm run serve
Now you should be able to see the project running at localhost:8080.
Open public/index.html
in your editor and start experimenting!
For production purposes, the PostCSS uses the Purgecss and cssnano to optimize your CSS!
To build an optimized version of your CSS, simply run:
# Using npm
npm run production
After that's done, check out ./public/build/tailwind.css
to see the optimized output.
Fell free to create pull requests with your improvements or corrections!