23 lines
338 B
Vue
23 lines
338 B
Vue
<template>
|
|
<div>
|
|
<div class="header">
|
|
<div class="gradient">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="content-container">
|
|
<nuxt />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// import FloatingYuriko from '~/components/FloatingYuriko'
|
|
export default {
|
|
components: {
|
|
// FloatingYuriko
|
|
}
|
|
}
|
|
</script>
|
|
|