Enhance movie management features by adding MovieList component to display user's watchlist; update MovieCard to include add/remove functionality for watchlist; refactor SearchMovies layout for improved structure; adjust global styles for primary color.
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
@theme {
|
||||
--color-background: #0e1428;
|
||||
--color-primary: #d95d39;
|
||||
--color-primary: #c73b6f;
|
||||
--color-accent: #7b9e89;
|
||||
--color-text: #eaeaea;
|
||||
--color-textSecondary: #aaaaaa;
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
import { MovieList } from "@/components/molecules/MovieList";
|
||||
import { SearchMovies } from "@/components/molecules/SearchMovies";
|
||||
|
||||
export default async function Home() {
|
||||
return (
|
||||
<main>
|
||||
<SearchMovies />
|
||||
<MovieList />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user