import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" import { faCircleXmark, faExternalLinkAlt } from "@fortawesome/free-solid-svg-icons" import Link from "next/link" export default function AccessDeniedScreen(requiredUserRole: string, featureName: string = 'This feature') { return <>

Access denied

{featureName} is only available to {requiredUserRole}s

To unlock this feature, make a pledge at patreon.com/CJ_Clippy

}