mattwr18 1a65d75c10 Add back blank layout
- The new maintenance page will use a blank layout that does not have a
footer because we don't want users thinking they can click on a link
that will just lead back to the maintenance page
2019-09-11 16:40:39 +02:00

18 lines
282 B
Vue

<template>
<div class="layout-blank">
<ds-container>
<div style="padding: 5rem 2rem;">
<nuxt />
</div>
</ds-container>
<div id="overlay" />
</div>
</template>
<script>
import seo from '~/mixins/seo'
export default {
mixins: [seo],
}
</script>