diff --git a/front/apps/mobile/app/collection/[slug]/index.tsx b/front/apps/mobile/app/collection/[slug]/index.tsx
new file mode 100644
index 00000000..58686664
--- /dev/null
+++ b/front/apps/mobile/app/collection/[slug]/index.tsx
@@ -0,0 +1,27 @@
+/*
+ * Kyoo - A portable and vast media library solution.
+ * Copyright (c) Kyoo.
+ *
+ * See AUTHORS.md and LICENSE file in the project root for full license information.
+ *
+ * Kyoo is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * Kyoo is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Kyoo. If not, see .
+ */
+
+import { CollectionPage } from "@kyoo/ui";
+import { withRoute } from "../../../utils";
+
+export default withRoute(CollectionPage, {
+ options: { headerTransparent: true, headerStyle: { backgroundColor: "transparent" } },
+ statusBar: { barStyle: "light-content" },
+});
diff --git a/front/apps/web/src/pages/collection/[slug]/index.tsx b/front/apps/web/src/pages/collection/[slug]/index.tsx
new file mode 100644
index 00000000..afc0749b
--- /dev/null
+++ b/front/apps/web/src/pages/collection/[slug]/index.tsx
@@ -0,0 +1,24 @@
+/*
+ * Kyoo - A portable and vast media library solution.
+ * Copyright (c) Kyoo.
+ *
+ * See AUTHORS.md and LICENSE file in the project root for full license information.
+ *
+ * Kyoo is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * Kyoo is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Kyoo. If not, see .
+ */
+
+import { CollectionPage } from "@kyoo/ui";
+import { withRoute } from "~/router";
+
+export default withRoute(CollectionPage);
diff --git a/front/packages/ui/src/collection/index.tsx b/front/packages/ui/src/collection/index.tsx
new file mode 100644
index 00000000..7a24e8eb
--- /dev/null
+++ b/front/packages/ui/src/collection/index.tsx
@@ -0,0 +1,171 @@
+/*
+ * Kyoo - A portable and vast media library solution.
+ * Copyright (c) Kyoo.
+ *
+ * See AUTHORS.md and LICENSE file in the project root for full license information.
+ *
+ * Kyoo is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * Kyoo is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Kyoo. If not, see .
+ */
+
+import {
+ Collection,
+ CollectionP,
+ ItemKind,
+ LibraryItem,
+ LibraryItemP,
+ QueryIdentifier,
+ QueryPage,
+ getDisplayDate,
+} from "@kyoo/models";
+import { Header as ShowHeader, TitleLine } from "../details/header";
+import { Container, ImageBackground, P, Skeleton, ts } from "@kyoo/primitives";
+import { percent, px, useYoshiki } from "yoshiki/native";
+import { useTranslation } from "react-i18next";
+import { forwardRef } from "react";
+import { Platform, View, ViewProps } from "react-native";
+import { Fetch } from "../fetch";
+import { InfiniteFetch } from "../fetch-infinite";
+import { DefaultLayout } from "../layout";
+import { ItemDetails } from "../home/recommanded";
+import { SvgWave } from "../details/show";
+
+const Header = ({ slug }: { slug: string }) => {
+ const { css } = useYoshiki();
+ const { t } = useTranslation();
+
+ return (
+
+ {({ isLoading, ...data }) => (
+ <>
+
+
+
+
+
+
+ {isLoading || (
+