Explorar el Código

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

Code_Uwe hace 1 mes
padre
commit
cf2f72bf01
Se han modificado 2 ficheros con 10 adiciones y 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 />;
+}