/** * @file app/(app)/not-found.tsx * @description Server component rendering a custom 404 page for missing or invalid routes within the app layout. */ import Link from "next/link"; import { AlertCircle, ArrowLeft } from "lucide-react"; /** * Renders the 404 Not Found fallback view containing an alert icon, message, and navigation link back to the summary page. * * @returns {JSX.Element} The rendered not found page component. */ export default function NotFound() { return (
{/* Icon Badge */}
{/* Text Content */}

Page not found

The page you are looking for doesn't exist or has been moved. Please check the URL or head back to your summary.

{/* Action Button */}
Back to Summary
); }