diff --git a/src/app/(application)/group/page.tsx b/src/app/(application)/group/page.tsx
new file mode 100644
index 0000000..69da2f2
--- /dev/null
+++ b/src/app/(application)/group/page.tsx
@@ -0,0 +1,11 @@
+import React from 'react';
+
+function Page() {
+ return (
+
+ Page
+
+ );
+}
+
+export default Page;
diff --git a/src/app/(application)/notification/page.tsx b/src/app/(application)/notification/page.tsx
new file mode 100644
index 0000000..67c880a
--- /dev/null
+++ b/src/app/(application)/notification/page.tsx
@@ -0,0 +1,10 @@
+import { ViewNotification } from '@/module/notification';
+import React from 'react';
+
+function Page() {
+ return (
+
+ );
+}
+
+export default Page;
diff --git a/src/app/(application)/position/page.tsx b/src/app/(application)/position/page.tsx
new file mode 100644
index 0000000..69da2f2
--- /dev/null
+++ b/src/app/(application)/position/page.tsx
@@ -0,0 +1,11 @@
+import React from 'react';
+
+function Page() {
+ return (
+
+ Page
+
+ );
+}
+
+export default Page;
diff --git a/src/app/(application)/project/page.tsx b/src/app/(application)/project/page.tsx
new file mode 100644
index 0000000..af04bfb
--- /dev/null
+++ b/src/app/(application)/project/page.tsx
@@ -0,0 +1,10 @@
+import { ViewProject } from '@/module/project';
+import React from 'react';
+
+function Page() {
+ return (
+
+ );
+}
+
+export default Page;