anix/refactor: change Filter Fetch Function

This commit is contained in:
Kentai Radiquum 2025-08-25 19:40:51 +05:00
parent 56334893b4
commit fd0ce8cb94
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 536 additions and 73 deletions

View file

@ -0,0 +1,12 @@
import { DiscoverPage } from "#/pages/Discover";
export const metadata = {
title: "Обзор - Популярное",
description: "Популярные релизы",
};
export const dynamic = "force-static";
export default function Discover() {
return <DiscoverPage />;
}