mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-03 21:15:35 +05:00
12 lines
326 B
TypeScript
12 lines
326 B
TypeScript
import { CreateCollectionPage } from "#/pages/CreateCollection";
|
|
|
|
export const metadata = {
|
|
title: "Создание коллекции",
|
|
description: "Создание новой коллекции",
|
|
};
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function Collections() {
|
|
return <CreateCollectionPage />;
|
|
}
|