anix/feat: add collections page for discovery page

This commit is contained in:
Kentai Radiquum 2025-08-27 23:11:04 +05:00
parent e067336605
commit bf24cd1063
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 174 additions and 14 deletions

View 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 />;
}