소스 검색

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

Code_Uwe 1 개월 전
부모
커밋
cf2f72bf01
2개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  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 />;
+}