2019-09-27 19:49:30 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div class="header">
|
|
|
|
<div class="gradient">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="content-container">
|
|
|
|
<nuxt />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2019-09-28 18:17:52 +00:00
|
|
|
<script>
|
2019-10-04 19:48:41 +00:00
|
|
|
// import FloatingYuriko from '~/components/FloatingYuriko'
|
2019-09-28 18:17:52 +00:00
|
|
|
export default {
|
2019-10-04 19:48:41 +00:00
|
|
|
components: {
|
|
|
|
// FloatingYuriko
|
2019-09-28 18:17:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|