intro.js 550 B

123456789101112131415161718
  1. const html = require('choo/html');
  2. module.exports = function intro(state) {
  3. return html`
  4. <send-intro
  5. class="flex flex-col items-center justify-center bg-white px-6 md:py-0 py-6 mb-0 h-full w-full dark:bg-grey-90"
  6. >
  7. <div class="mt-12 flex flex-col h-full">
  8. <h1 class="text-3xl font-bold md:pb-2">
  9. ${state.translate('introTitle')}
  10. </h1>
  11. <p class="max-w-sm leading-loose mt-6 md:mt-2 md:pr-14">
  12. ${state.translate('introDescription')}
  13. </p>
  14. </div>
  15. </send-intro>
  16. `;
  17. };