import type { ReactElement } from "react"; import Link from "next/link"; export default function AuthenticatedNotFound(): ReactElement { return (
{/* Compass icon in blue-tinted icon well */}
{/* 404 badge pill */} 404 {/* Heading + description */}

Page not found

This page doesn't exist or you may not have permission to view it.

{/* Action buttons */}
{/* Primary: Dashboard */} Dashboard {/* Ghost: Settings */} Settings
); }