-
-
-
- );
+ return redirect("/dev/auth/splash")
}
diff --git a/src/app_modules/auth/index.ts b/src/app_modules/auth/index.ts
new file mode 100644
index 00000000..9ad38fa5
--- /dev/null
+++ b/src/app_modules/auth/index.ts
@@ -0,0 +1,3 @@
+import SplashScreen from "./splash/view";
+
+export {SplashScreen}
\ No newline at end of file
diff --git a/src/app_modules/auth/splash/view.tsx b/src/app_modules/auth/splash/view.tsx
new file mode 100644
index 00000000..dd6d63de
--- /dev/null
+++ b/src/app_modules/auth/splash/view.tsx
@@ -0,0 +1,10 @@
+"use client"
+
+import { Title } from "@mantine/core"
+
+export default function SplashScreen(){
+ return <>
+ Splash Screen
+
+ >
+}
\ No newline at end of file
diff --git a/src/modules/contoh/fun/index.ts b/src/modules/contoh/fun/index.ts
deleted file mode 100644
index 5a869f3e..00000000
--- a/src/modules/contoh/fun/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { funLihatNama } from "./lihat_nama";
-
-export { funLihatNama }
\ No newline at end of file
diff --git a/src/modules/contoh/fun/lihat_nama.ts b/src/modules/contoh/fun/lihat_nama.ts
deleted file mode 100644
index 3226fbf2..00000000
--- a/src/modules/contoh/fun/lihat_nama.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export function funLihatNama() {
- console.log("nama malik")
-}
\ No newline at end of file
diff --git a/src/modules/contoh/index.ts b/src/modules/contoh/index.ts
deleted file mode 100644
index 75536719..00000000
--- a/src/modules/contoh/index.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-import valNama from "./val/get_nama";
-import Halaman, { Menu } from "./view";
-
-export default Halaman
-export { valNama }
-export { Menu }
diff --git a/src/modules/contoh/val/get_nama.ts b/src/modules/contoh/val/get_nama.ts
deleted file mode 100644
index b7652937..00000000
--- a/src/modules/contoh/val/get_nama.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-const valNama = "malik"
-export default valNama
\ No newline at end of file
diff --git a/src/modules/contoh/view/halaman/index.tsx b/src/modules/contoh/view/halaman/index.tsx
deleted file mode 100644
index e7535b98..00000000
--- a/src/modules/contoh/view/halaman/index.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-export default function Halaman() {
- return <>
-
Halaman
- >
-}
\ No newline at end of file
diff --git a/src/modules/contoh/view/index.ts b/src/modules/contoh/view/index.ts
deleted file mode 100644
index 51ca9a9b..00000000
--- a/src/modules/contoh/view/index.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import Halaman from "./halaman";
-import Menu from "./menu";
-
-export default Halaman
-export { Menu }
\ No newline at end of file
diff --git a/src/modules/contoh/view/menu/index.tsx b/src/modules/contoh/view/menu/index.tsx
deleted file mode 100644
index 6fb73190..00000000
--- a/src/modules/contoh/view/menu/index.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-export default function Menu() {
- return <>
- ini adalah Menu
- >
-}
\ No newline at end of file
diff --git a/src/modules/dashboard_admin/dashboard_admin.tsx b/src/modules/dashboard_admin/dashboard_admin.tsx
deleted file mode 100644
index 39d30430..00000000
--- a/src/modules/dashboard_admin/dashboard_admin.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-"use client"
-
-export function DashboardAdmin(){
- return <>
-
- ini dashboard admin
-
- >
-}
\ No newline at end of file
diff --git a/src/modules/dashboard_admin/index.ts b/src/modules/dashboard_admin/index.ts
deleted file mode 100644
index 9ba69640..00000000
--- a/src/modules/dashboard_admin/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { DashboardAdmin } from "./dashboard_admin";
-
-export default DashboardAdmin
\ No newline at end of file
diff --git a/src/modules/dashboard_super_admin/dashboard_super_admin.tsx b/src/modules/dashboard_super_admin/dashboard_super_admin.tsx
deleted file mode 100644
index 157b6b49..00000000
--- a/src/modules/dashboard_super_admin/dashboard_super_admin.tsx
+++ /dev/null
@@ -1,7 +0,0 @@
-"use client"
-
-export function DashboardSuperAdmin(){
- return <>
-
Ini super admin
- >
-}
\ No newline at end of file
diff --git a/src/modules/dashboard_super_admin/index.ts b/src/modules/dashboard_super_admin/index.ts
deleted file mode 100644
index 718db039..00000000
--- a/src/modules/dashboard_super_admin/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { DashboardSuperAdmin } from "./dashboard_super_admin";
-
-export default DashboardSuperAdmin
\ No newline at end of file
diff --git a/src/modules/landing_page/index.tsx b/src/modules/landing_page/index.tsx
deleted file mode 100644
index fcea2b83..00000000
--- a/src/modules/landing_page/index.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-
-import { LandingPage } from "./landing-page";
-
-export default LandingPage;
-
diff --git a/src/modules/landing_page/landing-page.tsx b/src/modules/landing_page/landing-page.tsx
deleted file mode 100644
index 5d16168b..00000000
--- a/src/modules/landing_page/landing-page.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-"use client"
-
-import { Box } from "@mantine/core"
-
-export function LandingPage(){
- return <>
-
- ini Landing
-
- >
-}
\ No newline at end of file
diff --git a/src/modules/login/index.ts b/src/modules/login/index.ts
deleted file mode 100644
index baa68cea..00000000
--- a/src/modules/login/index.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import LoginPage from "./login_page";
-import RegisterPage from "./register_page";
-
-export {LoginPage}
-export {RegisterPage}
\ No newline at end of file
diff --git a/src/modules/login/login_page/index.ts b/src/modules/login/login_page/index.ts
deleted file mode 100644
index bd34c236..00000000
--- a/src/modules/login/login_page/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { LoginPage } from "./login_page";
-
-export default LoginPage
\ No newline at end of file
diff --git a/src/modules/login/login_page/login_page.tsx b/src/modules/login/login_page/login_page.tsx
deleted file mode 100644
index 75bf759e..00000000
--- a/src/modules/login/login_page/login_page.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-"use client"
-
-import { Button } from "@mantine/core"
-import { useRouter } from "next/navigation"
-
-export function LoginPage(){
- const router = useRouter()
- return <>
-
ini login
-
- >
-}
\ No newline at end of file
diff --git a/src/modules/login/register_page/index.ts b/src/modules/login/register_page/index.ts
deleted file mode 100644
index 0686cfe0..00000000
--- a/src/modules/login/register_page/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { RegisterPage } from "./register_page";
-
-export default RegisterPage
\ No newline at end of file
diff --git a/src/modules/login/register_page/register_page.tsx b/src/modules/login/register_page/register_page.tsx
deleted file mode 100644
index feb8e06f..00000000
--- a/src/modules/login/register_page/register_page.tsx
+++ /dev/null
@@ -1,7 +0,0 @@
-"use client"
-
-export function RegisterPage(){
- return <>
-