A single page landing page built with tailwindcss for an iOS app, X-Wing AI. The site is hosted at https://xwing.app.
tailwind requires a CSS processor to generate all of the utility classes being used. To keep things as simple as possible I'm directly calling postcss-cli.
- Install
yarn
yarn install
yarn run watch
Open dist/index.html
in your browser. You can now edit src/index.html
and css/base.css
which will be automatically watched then processed.
Run yarn run build
to process, purge, and minimize the CSS for production. You can then copy the contents of dist/
wherever you want to deploy the site.
This project was indirectly forked from tailwindtoolbox's Landing Page template which is released under the MIT license.