mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-05 22:15:36 +05:00
12 lines
337 B
TypeScript
12 lines
337 B
TypeScript
import { DiscoverWatchingPage } from "#/pages/DiscoverWatching";
|
|
|
|
export const metadata = {
|
|
title: "Обзор - Смотрят сейчас",
|
|
description: "Релизы которые сейчас смотрят",
|
|
};
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function Discover() {
|
|
return <DiscoverWatchingPage />;
|
|
}
|