mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-03 21:15:35 +05:00
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import { CollectionsPage } from "#/pages/Collections";
|
|
|
|
export const metadata = {
|
|
title: "Коллекции",
|
|
description: "Просмотр и управление коллекциями",
|
|
}
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function Collections() {
|
|
return <CollectionsPage />;
|
|
}
|