Kaynağa Gözat

RHL-021 feat(view): add ForbiddenPage and NotFound components for improved user navigation

Code_Uwe 1 ay önce
ebeveyn
işleme
cf2f72bf01

+ 5 - 0
app/(protected)/forbidden/page.jsx

@@ -0,0 +1,5 @@
+import ForbiddenView from "@/components/system/ForbiddenView";
+
+export default function ForbiddenPage() {
+	return <ForbiddenView />;
+}

+ 5 - 0
app/(protected)/not-found.jsx

@@ -0,0 +1,5 @@
+import NotFoundView from "@/components/system/NotFoundView";
+
+export default function NotFound() {
+	return <NotFoundView />;
+}