2023-02-08 15:11:33 -06:00
|
|
|
import { useSession } from "next-auth/react";
|
|
|
|
import Collections from "@/components/Collections";
|
|
|
|
|
|
|
|
export default function Dashboard() {
|
|
|
|
const { data: session, status } = useSession();
|
|
|
|
|
|
|
|
const user = session?.user;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="p-5">
|
2023-02-08 17:58:55 -06:00
|
|
|
<p className="text-3xl font-bold text-center mb-10">Linkwarden</p>
|
2023-02-08 15:11:33 -06:00
|
|
|
<Collections />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|