+ )
+}
+
+export default AdminPage
\ No newline at end of file
diff --git a/src/app/(dashboard)/layout.tsx b/src/app/(dashboard)/layout.tsx
new file mode 100644
index 0000000000..31c98e88d9
--- /dev/null
+++ b/src/app/(dashboard)/layout.tsx
@@ -0,0 +1,22 @@
+import Link from "next/link";
+import Image from "next/image";
+import Menu from "@/components/Menu";
+
+export default function DashboardLayout({
+ children,
+}: Readonly<{
+ children: React.ReactNode;
+}>) {
+ return
+ {/* LEFT */}
+
+
+
+ Jnanalayam
+
+
+
+ {/* RIGHT */}
+
right side
+
+}
\ No newline at end of file
diff --git a/src/app/(dashboard)/parent/page.tsx b/src/app/(dashboard)/parent/page.tsx
new file mode 100644
index 0000000000..c863e428b6
--- /dev/null
+++ b/src/app/(dashboard)/parent/page.tsx
@@ -0,0 +1,7 @@
+const ParentPage = () => {
+ return (
+
Parent page
+ )
+}
+
+export default ParentPage
\ No newline at end of file
diff --git a/src/app/(dashboard)/student/page.tsx b/src/app/(dashboard)/student/page.tsx
new file mode 100644
index 0000000000..4b73f8665c
--- /dev/null
+++ b/src/app/(dashboard)/student/page.tsx
@@ -0,0 +1,7 @@
+const StudentPage = () => {
+ return (
+
Student page
+ )
+}
+
+export default StudentPage
\ No newline at end of file
diff --git a/src/app/(dashboard)/teacher/page.tsx b/src/app/(dashboard)/teacher/page.tsx
new file mode 100644
index 0000000000..c426e51864
--- /dev/null
+++ b/src/app/(dashboard)/teacher/page.tsx
@@ -0,0 +1,9 @@
+
+
+const TeacherPage = () => {
+ return (
+
Teacher page
+ )
+}
+
+export default TeacherPage
\ No newline at end of file
diff --git a/src/app/sign-in/page.tsx b/src/app/sign-in/page.tsx
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/src/components/Menu.tsx b/src/components/Menu.tsx
index de074fa04e..d48b4ffdd0 100644
--- a/src/components/Menu.tsx
+++ b/src/components/Menu.tsx
@@ -1,3 +1,6 @@
+import Link from "next/link";
+import Image from "next/image";
+
const menuItems = [
{
title: "MENU",
@@ -111,4 +114,30 @@ const menuItems = [
},
],
},
-];
\ No newline at end of file
+];
+
+const Menu = () => {
+ return (
+