Explorar o código

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

Code_Uwe hai 1 mes
pai
achega
cf2f72bf01
Modificáronse 2 ficheiros con 10 adicións e 0 borrados
  1. 5 0
      app/(protected)/forbidden/page.jsx
  2. 5 0
      app/(protected)/not-found.jsx

+ 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 />;
+}