mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-05 22:15:36 +05:00
anix/feat: add collections page for discovery page
This commit is contained in:
parent
e067336605
commit
bf24cd1063
5 changed files with 174 additions and 14 deletions
12
app/discovery/collections/page.tsx
Normal file
12
app/discovery/collections/page.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { DiscoverCollectionsPage } from "#/pages/DiscoverCollections";
|
||||
|
||||
export const metadata = {
|
||||
title: "Обзор - Коллекции",
|
||||
description: "",
|
||||
};
|
||||
|
||||
export const dynamic = "force-static";
|
||||
|
||||
export default function Discover() {
|
||||
return <DiscoverCollectionsPage />;
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
import { DiscoverPage } from "#/pages/Discover";
|
||||
|
||||
export const metadata = {
|
||||
title: "Обзор - Популярное",
|
||||
description: "Популярные релизы",
|
||||
};
|
||||
|
||||
export const dynamic = "force-static";
|
||||
|
||||
export default function Discover() {
|
||||
return <DiscoverPage />;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue