anix/feat: add interesting carousel to discovery page

This commit is contained in:
Kentai Radiquum 2025-08-25 06:46:51 +05:00
parent 93205fdb4e
commit bfb361a0a8
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 121 additions and 15 deletions

12
app/discovery/page.tsx Normal file
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 />;
}