Many changes.

This commit is contained in:
Daniel
2023-02-19 07:02:02 +03:30
parent d19204f4c0
commit e0f4c71eb2
19 changed files with 282 additions and 122 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
import { useSession } from "next-auth/react";
import Collections from "@/components/Collections";
import CollectionCards from "@/components/CollectionCards";
export default function Dashboard() {
const { data: session, status } = useSession();
@@ -7,9 +7,9 @@ export default function Dashboard() {
const user = session?.user;
return (
// ml-80
<div className="p-5">
<p className="text-3xl font-bold text-center mb-10">Linkwarden</p>
<Collections />
<CollectionCards />
</div>
);
}