mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-03 21:15:35 +05:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
export const metadata = {
|
|
title: "Закладки",
|
|
};
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
import { BookmarksPage } from "#/pages/Bookmarks";
|
|
export default function Index() {
|
|
return <BookmarksPage />;
|
|
}
|