MoviesList.vue
336 Bytes
<script setup lang="ts">
import SearchBar from "~/components/SearchBar.vue";
</script>
<template>
<section>
<h1 class="text-4xl font-bold mb-8 text-center">Découvrez les films populaires</h1>
<!-- Barre de recherche -->
<search-bar placeholder="Rechercher un film..."/>
</section>
</template>
<style scoped>
</style>