feat: add bookmarks & bookmarks category pages

This commit is contained in:
Kentai Radiquum 2024-07-16 09:22:09 +05:00
parent a3f5f2e116
commit bccc8407fc
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
13 changed files with 624 additions and 155 deletions

10
app/bookmarks/page.js Normal file
View file

@ -0,0 +1,10 @@
export const metadata = {
title: "AniX | Закладки",
};
import { BookmarksPage } from "@/app/pages/Bookmarks";
export default function Index() {
return <BookmarksPage />;
}