updated intro image

This commit is contained in:
Danny Coates 2019-02-14 16:16:30 -08:00
parent 5ce35a71ef
commit b30be6e4a2
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
5 changed files with 163 additions and 5 deletions

View file

@ -4,16 +4,16 @@ const assets = require('../../common/assets');
module.exports = function intro(state) {
return html`
<send-intro
class="flex flex-col items-center justify-center bg-white border border-grey-light md:border-none px-6 md:py-0 py-6 mb-0 h-full w-full"
class="flex flex-col items-center justify-center bg-white px-6 md:py-0 py-6 mb-0 h-full w-full"
>
<div class="flex flex-col justify-end h-full py-8">
<div class="flex flex-col justify-end h-full">
<h1 class="font-bold">
${state.translate('uploadPageHeader')}
</h1>
<p class="max-w-sm mt-2 font-light leading-normal">
<p class="max-w-sm mt-2 pr-16 font-light leading-normal">
${state.translate('uploadPageExplainer')}
</p>
<img class="-mb-12" src="${assets.get('intro.png')}" />
<img class="intro" src="${assets.get('intro.svg')}" />
</div>
</send-intro>
`;