trepa-web/src/pages/home/settings/movies.astro
2024-07-16 22:41:10 +02:00

20 lines
593 B
Text

---
import AddMovieForm from "../../../components/forms/AddMovieForm";
import HomeLayout from "../../../layouts/HomeLayout.astro";
---
<HomeLayout title="Add movie">
<div class="row justify-content-center">
<div class="col">
<div class="row">
<div class="col"><h1>Add movie</h1></div>
</div>
<div class="row">
<div class="col">
<h3>Search on TMDB Database</h3>
<AddMovieForm client:load />
</div>
</div>
</div>
</div>
</HomeLayout>