forked from mozilla/send
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotFound.js
27 lines (26 loc) · 930 Bytes
/
notFound.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
const html = require('choo/html');
const assets = require('../../common/assets');
const modal = require('./modal');
module.exports = function(state, emit) {
return html`
<main class="main">
${state.modal && modal(state, emit)}
<section
class="flex flex-col items-center justify-center h-full w-full p-6 md:p-8 overflow-hidden md:rounded-xl md:shadow-big"
>
<h1 class="text-center text-3xl font-bold my-2">
${state.translate('expiredTitle')}
</h1>
<img src="${assets.get('notFound.svg')}" class="my-12" />
<p class="max-w-md text-center text-grey-darkest leading-normal">
${state.translate('trySendDescription')}
</p>
<p class="my-5">
<a href="/" class="btn rounded-lg flex items-center" role="button"
>${state.translate('sendYourFilesLink')}</a
>
</p>
</section>
</main>
`;
};