refactor [front]: cleanup

This commit is contained in:
Alice 2022-07-11 01:24:00 +02:00
parent fb1125f796
commit ff485576ca
2 changed files with 7 additions and 9 deletions

View file

@ -1,12 +1,8 @@
<template> <template>
<div class="layout bg-gray-100"> <div class="layout bg-gray-100">
<LayoutNavBar /> <LayoutNavBar />
<div class="container mx-auto"> <div class="container">
<slot /> <slot />
</div> </div>
</div> </div>
</template> </template>
<script>
export default {}
</script>

View file

@ -1,9 +1,11 @@
<template> <template>
<div <section class="section">
class="relative items-top justify-center min-h-screen bg-gray-100 sm:items-center sm:pt-0" <h2 class="title">La semaine prochaine</h2>
>
<MainMovie /> <MainMovie />
</div> </section>
<section class="section">
<h2 class="title">Et après</h2>
</section>
</template> </template>
<script setup lang="ts"></script> <script setup lang="ts"></script>