mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-03 21:15:35 +05:00
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
export const metadata = {
|
|
title: "Избранное",
|
|
};
|
|
|
|
import { FavoritesPage } from "#/pages/Favorites";
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function Index() {
|
|
return <FavoritesPage />;
|
|
}
|