feat: add viewing of all collections of users, releases and favorite collections

This commit is contained in:
Kentai Radiquum 2024-08-13 17:14:32 +05:00
parent c1204473ec
commit 3de552f271
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
6 changed files with 248 additions and 7 deletions

View file

@ -0,0 +1,10 @@
import { CollectionsFullPage } from "#/pages/CollectionsFull";
export const metadata = {
title: "Избранные коллекции",
description: "Просмотр избранных коллекций",
};
export default function Collections() {
return <CollectionsFullPage type="favorites" title="Избранные коллекции" />;
}