Initial commit

This commit is contained in:
2026-03-27 19:35:14 +01:00
commit 38581b88a4
68 changed files with 12137 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
"use client";
import { signOut } from "next-auth/react";
import { Button } from "@/components/ui/button";
export function SignOutButton() {
return (
<Button
variant="secondary"
className="dashboard-action"
type="button"
onClick={() => signOut({ callbackUrl: "/login" })}
>
Sign out
</Button>
);
}