2018-10-25 04:07:10 +02:00
|
|
|
const html = require('choo/html');
|
|
|
|
|
|
|
|
module.exports = function() {
|
2018-11-16 21:39:36 +01:00
|
|
|
return html`
|
2019-02-22 22:31:54 +01:00
|
|
|
<main class="main">
|
2019-02-11 22:48:06 +01:00
|
|
|
<section
|
2019-05-03 18:26:10 +02:00
|
|
|
class="h-full w-full p-6 md:p-8 md:flex md:flex-row md:rounded-xl md:shadow-big"
|
2019-02-11 22:48:06 +01:00
|
|
|
>
|
2019-01-08 20:24:07 +01:00
|
|
|
<div class="md:mr-6 md:w-1/2 w-full"></div>
|
|
|
|
<div class="md:w-1/2 mt-6 md:mt-0 w-full"></div>
|
|
|
|
</section>
|
|
|
|
</main>
|
2018-11-16 21:39:36 +01:00
|
|
|
`;
|
2018-10-25 04:07:10 +02:00
|
|
|
};
|