feat: add collections page

This commit is contained in:
Kentai Radiquum 2024-08-13 13:24:11 +05:00
parent dbe9eba23f
commit 9e843be11f
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
7 changed files with 338 additions and 0 deletions

10
app/collections/page.tsx Normal file
View file

@ -0,0 +1,10 @@
import { CollectionsPage } from "#/pages/Collections";
export const metadata = {
title: "Коллекции",
description: "Просмотр и управление коллекциями",
}
export default function Collections() {
return <CollectionsPage />;
}