"use client"; import { useRouter } from "next/navigation"; import { Button } from "@/components/ui/button"; import { ArrowLeftIcon, HomeIcon } from "lucide-react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; export default function UnauthorizedPage() { const router = useRouter(); const handleGoBack = () => { router.back(); }; const handleGoHome = () => { router.push("/"); }; return (
403

你无权访问该页面

); }