diff --git a/frontend/app/components/ReleaseList/ReleaseList.jsx b/frontend/app/components/ReleaseList/ReleaseList.jsx
new file mode 100644
index 0000000..2ff6b8d
--- /dev/null
+++ b/frontend/app/components/ReleaseList/ReleaseList.jsx
@@ -0,0 +1,33 @@
+import Link from "next/link";
+import Image from "next/legacy/image";
+
+export const ReleaseList = (props) => {
+ return (
+
+
+ );
+};
diff --git a/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx b/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx
index 9856e31..da73865 100644
--- a/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx
+++ b/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx
@@ -1,30 +1,54 @@
import { CardList } from "@/app/components/CardList/CardList";
+import { useState } from "react";
export default function ReleasesOverview(props) {
+ const [view, setView] = useState("grid");
+
return (
<>
- {props.chips && (
+
+ {props.chips && (
+
+ {props.chips.map((item) => {
+ return (
+
+ );
+ })}
+
+ )}
+
- {props.chips.map((item) => {
- return (
-
- );
- })}
+
+
- )}
+