This commit is contained in:
mattwr18 2019-09-11 09:16:06 +02:00
parent f3a9996962
commit 030ff32b13
2 changed files with 11 additions and 19 deletions

View File

@ -3,9 +3,7 @@ import defaultConfig from './nuxt.config.js'
const { const {
css, css,
styleResources, styleResources,
env: { env: { locales },
locales,
},
manifest, manifest,
} = defaultConfig } = defaultConfig
@ -28,7 +26,7 @@ export default {
{ {
hid: 'description', hid: 'description',
name: 'description', name: 'description',
content: 'Maintenance page for Human Connection' content: 'Maintenance page for Human Connection',
}, },
], ],
link: [ link: [
@ -46,18 +44,15 @@ export default {
{ src: '~/plugins/v-tooltip.js', ssr: false }, { src: '~/plugins/v-tooltip.js', ssr: false },
], ],
modules: [ modules: ['cookie-universal-nuxt', '@nuxtjs/style-resources'],
'cookie-universal-nuxt',
'@nuxtjs/style-resources',
],
router: { router: {
extendRoutes(routes, resolve) { extendRoutes(routes, resolve) {
routes.push({ routes.push({
name: 'maintenance', name: 'maintenance',
path: '*', path: '*',
component: resolve(__dirname, 'pages/index.vue') component: resolve(__dirname, 'pages/index.vue'),
}) })
} },
} },
} }

View File

@ -10,16 +10,12 @@
<ds-flex> <ds-flex>
<ds-flex-item :width="{ base: '100%', sm: 1, md: 1 }"> <ds-flex-item :width="{ base: '100%', sm: 1, md: 1 }">
<ds-space> <ds-space>
<img <img class="login-image" alt="Human Connection" src="/img/sign-up/onourjourney.svg" />
class="login-image"
alt="Human Connection"
src="/img/sign-up/onourjourney.svg"
/>
</ds-space> </ds-space>
</ds-flex-item> </ds-flex-item>
<ds-flex-item :width="{ base: '100%', sm: 1, md: 1 }"> <ds-flex-item :width="{ base: '100%', sm: 1, md: 1 }">
<ds-flex-item> <ds-flex-item>
<ds-heading tag='h3'> <ds-heading tag="h3">
{{ $t('maintenance.title') }} {{ $t('maintenance.title') }}
</ds-heading> </ds-heading>
</ds-flex-item> </ds-flex-item>
@ -32,7 +28,8 @@
{{ $t('maintenance.questions') }} {{ $t('maintenance.questions') }}
<a href="mailto:info@human-connection.org" class="email-link"> <a href="mailto:info@human-connection.org" class="email-link">
info@human-connection.org info@human-connection.org
</a>. </a>
.
</ds-text> </ds-text>
</ds-space> </ds-space>
</ds-flex-item> </ds-flex-item>