2018-10-25 02:07:10 +00:00
|
|
|
const html = require('choo/html');
|
|
|
|
|
|
|
|
module.exports = function() {
|
2018-11-16 20:39:36 +00:00
|
|
|
return html`
|
2019-01-08 19:24:07 +00:00
|
|
|
<main class="main relative">
|
2019-02-11 21:48:06 +00:00
|
|
|
<section
|
|
|
|
class="h-full w-full p-6 z-10 md:flex md:flex-row md:rounded-lg md:shadow-big"
|
|
|
|
>
|
2019-01-08 19:24:07 +00: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 20:39:36 +00:00
|
|
|
`;
|
2018-10-25 02:07:10 +00:00
|
|
|
};
|