feat: add favorites page

This commit is contained in:
Kentai Radiquum 2024-07-16 13:08:43 +05:00
parent 484148ada6
commit 28efc5a98c
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
10 changed files with 177 additions and 36 deletions

9
app/favorites/page.js Normal file
View file

@ -0,0 +1,9 @@
export const metadata = {
title: "Избранное",
};
import { FavoritesPage } from "@/app/pages/Favorites";
export default function Index() {
return <FavoritesPage />;
}