mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
18 lines
281 B
Vue
18 lines
281 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>
|