mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-05 22:15:36 +05:00
anix/feat: add recommendations and watching pages to discovery
This commit is contained in:
parent
3d08603bc3
commit
7d15eef691
5 changed files with 194 additions and 2 deletions
12
app/discovery/recommendations/page.tsx
Normal file
12
app/discovery/recommendations/page.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { DiscoverRecommendationsPage } from "#/pages/DiscoverRecommendations";
|
||||
|
||||
export const metadata = {
|
||||
title: "Обзор - Рекомендации",
|
||||
description: "",
|
||||
};
|
||||
|
||||
export const dynamic = "force-static";
|
||||
|
||||
export default function Discover() {
|
||||
return <DiscoverRecommendationsPage />;
|
||||
}
|
12
app/discovery/watching/page.tsx
Normal file
12
app/discovery/watching/page.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { DiscoverWatchingPage } from "#/pages/DiscoverWatching";
|
||||
|
||||
export const metadata = {
|
||||
title: "Обзор - Смотрят сейчас",
|
||||
description: "Релизы которые сейчас смотрят",
|
||||
};
|
||||
|
||||
export const dynamic = "force-static";
|
||||
|
||||
export default function Discover() {
|
||||
return <DiscoverWatchingPage />;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue