mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-28 00:49:40 +05:00
feat: add collections page
This commit is contained in:
parent
dbe9eba23f
commit
9e843be11f
7 changed files with 338 additions and 0 deletions
12
app/components/AddCollectionLink/AddCollectionLink.tsx
Normal file
12
app/components/AddCollectionLink/AddCollectionLink.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import Link from "next/link";
|
||||
|
||||
export const AddCollectionLink = (props: any) => {
|
||||
return (
|
||||
<Link href={`/collection/create`}>
|
||||
<div className="flex flex-col items-center justify-center w-full gap-2 text-black transition-colors bg-gray-100 border hover:bg-gray-200 border-gray-50 hover:border-gray-100 dark:border-gray-700 dark:hover:border-gray-600 dark:hover:bg-gray-500 aspect-video group dark:bg-gray-600 dark:text-white">
|
||||
<span className="w-8 h-8 iconify mdi--plus-circle dark:fill-white"></span>
|
||||
<p>Новая коллекция</p>
|
||||
</div>
|
||||
</Link>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue