From ca6b890d6e92baeb3d48af4ad59a98a3647c251e Mon Sep 17 00:00:00 2001
From: unknown <“charan.p@globalsinc.com”>
Date: Tue, 25 Jun 2024 12:08:51 +0530
Subject: [PATCH] Initial commit
---
.gitignore | 2 ++
app/dashboard/layout.jsx | 19 +++++++++++++++++++
app/dashboard/page.jsx | 7 +++++++
app/login/page.jsx | 7 +++++++
app/ui/dashboard/navbar/navbar.jsx | 7 +++++++
app/ui/dashboard/sidebar/sidebar.jsx | 7 +++++++
6 files changed, 49 insertions(+)
create mode 100644 app/dashboard/layout.jsx
create mode 100644 app/dashboard/page.jsx
create mode 100644 app/login/page.jsx
create mode 100644 app/ui/dashboard/navbar/navbar.jsx
create mode 100644 app/ui/dashboard/sidebar/sidebar.jsx
diff --git a/.gitignore b/.gitignore
index fd3dbb571..f053e5b59 100644
--- a/.gitignore
+++ b/.gitignore
@@ -34,3 +34,5 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
+
+package-lock.json
\ No newline at end of file
diff --git a/app/dashboard/layout.jsx b/app/dashboard/layout.jsx
new file mode 100644
index 000000000..b12963c41
--- /dev/null
+++ b/app/dashboard/layout.jsx
@@ -0,0 +1,19 @@
+import NavBar from "../ui/dashboard/navbar/navbar";
+import SideBar from "../ui/dashboard/sidebar/sidebar";
+
+const Layout = ({children}) => {
+ return(
+
+
+
+
+
+
+ {children}
+
+
+ )
+
+}
+
+export default Layout
\ No newline at end of file
diff --git a/app/dashboard/page.jsx b/app/dashboard/page.jsx
new file mode 100644
index 000000000..44892ef86
--- /dev/null
+++ b/app/dashboard/page.jsx
@@ -0,0 +1,7 @@
+const DashboardPage = () => {
+ return(
+ Dashboard Page
+ )
+}
+
+export default DashboardPage
\ No newline at end of file
diff --git a/app/login/page.jsx b/app/login/page.jsx
new file mode 100644
index 000000000..a0c6600bb
--- /dev/null
+++ b/app/login/page.jsx
@@ -0,0 +1,7 @@
+const LoginPage = () => {
+ return(
+ Login Page
+ )
+}
+
+export default LoginPage
\ No newline at end of file
diff --git a/app/ui/dashboard/navbar/navbar.jsx b/app/ui/dashboard/navbar/navbar.jsx
new file mode 100644
index 000000000..bd13ae59e
--- /dev/null
+++ b/app/ui/dashboard/navbar/navbar.jsx
@@ -0,0 +1,7 @@
+const NavBar = () => {
+ return(
+ NavBar
+ )
+}
+
+export default NavBar
\ No newline at end of file
diff --git a/app/ui/dashboard/sidebar/sidebar.jsx b/app/ui/dashboard/sidebar/sidebar.jsx
new file mode 100644
index 000000000..d9913d782
--- /dev/null
+++ b/app/ui/dashboard/sidebar/sidebar.jsx
@@ -0,0 +1,7 @@
+const SideBar = () => {
+ return(
+ SideBar
+ )
+}
+
+export default SideBar
\ No newline at end of file