"use client"; import { Button } from "@/components/ui/button"; import Link from "next/link"; import { usePathname } from "next/navigation"; export default function UnauthorizedPage() { const pathname = usePathname(); return (

401 - Unauthorized

Please sign in to continue.

); }