- Next.js 16.2.2 + React 19 + TypeScript + Tailwind v4 - Better Auth with email/password and role system (student/curator/admin) - Prisma 7 schema: User, Session, Account, Verification + full LMS model - Role-based dashboards: student /dashboard, curator /curator/dashboard, admin /admin/dashboard - Auth pages: login, register, verify-email - Better Auth API route handler - Middleware for route protection - Docker Compose with PostgreSQL 16 - Seed script with test users (admin/curator/student) - CLAUDE.md and ROADMAP.md project documentation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
453 B
TypeScript
24 lines
453 B
TypeScript
"use client";
|
|
|
|
import { useRouter } from "next/navigation";
|
|
import { signOut } from "@/lib/auth-client";
|
|
|
|
export function LogoutButton() {
|
|
const router = useRouter();
|
|
|
|
async function handleLogout() {
|
|
await signOut();
|
|
router.push("/login");
|
|
router.refresh();
|
|
}
|
|
|
|
return (
|
|
<button
|
|
onClick={handleLogout}
|
|
className="text-sm text-gray-500 hover:text-gray-700 transition-colors"
|
|
>
|
|
Выйти
|
|
</button>
|
|
);
|
|
}
|