import Link from "next/link"; type AccessDeniedProps = { message?: string; }; export default function AdminAccessDenied({ message = "You do not have permission to view this page.", }: AccessDeniedProps) { return (

Access Denied

{message}

Go to Login Return to homepage
); }