'use client' import { Button } from "@/components/ui/button"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { redirect } from "next/navigation"; export default function ForbiddenPage() { const handleGoBack = () => { redirect("/") }; return (
403

你无权访问该页面

); }