AniX/app/collections/create/page.tsx

10 lines
286 B
TypeScript

import { CreateCollectionPage } from "#/pages/CreateCollection";
export const metadata = {
title: "Создание коллекции",
description: "Создание новой коллекции",
};
export default function Collections() {
return <CreateCollectionPage />;
}