diff --git a/src/app/(main)/analytics/page.tsx b/src/app/(main)/analytics/page.tsx
new file mode 100644
index 0000000..9ca9a24
--- /dev/null
+++ b/src/app/(main)/analytics/page.tsx
@@ -0,0 +1,11 @@
+import { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Analytics",
+};
+
+const Analytics: React.FC = async () => {
+ return "Analytics";
+};
+
+export default Analytics;
diff --git a/src/app/(main)/claim/page.tsx b/src/app/(main)/claim/page.tsx
new file mode 100644
index 0000000..9388d1a
--- /dev/null
+++ b/src/app/(main)/claim/page.tsx
@@ -0,0 +1,11 @@
+import { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Claim",
+};
+
+const Claim: React.FC = async () => {
+ return "Claim";
+};
+
+export default Claim;
diff --git a/src/app/(main)/dashboard/page.tsx b/src/app/(main)/dashboard/page.tsx
new file mode 100644
index 0000000..d635879
--- /dev/null
+++ b/src/app/(main)/dashboard/page.tsx
@@ -0,0 +1,11 @@
+import { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Dashboard",
+};
+
+const Dashboard: React.FC = async () => {
+ return "Dashboard";
+};
+
+export default Dashboard;
diff --git a/src/app/(main)/home/page.tsx b/src/app/(main)/home/page.tsx
new file mode 100644
index 0000000..1901092
--- /dev/null
+++ b/src/app/(main)/home/page.tsx
@@ -0,0 +1,11 @@
+import { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Home",
+};
+
+const Home: React.FC = async () => {
+ return "Home";
+};
+
+export default Home;
diff --git a/src/app/(main)/invoice/page.tsx b/src/app/(main)/invoice/page.tsx
new file mode 100644
index 0000000..ae9fc37
--- /dev/null
+++ b/src/app/(main)/invoice/page.tsx
@@ -0,0 +1,11 @@
+import { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Invoice",
+};
+
+const Invoice: React.FC = async () => {
+ return "Invoice";
+};
+
+export default Invoice;
diff --git a/src/app/dashboard/layout.tsx b/src/app/(main)/layout.tsx
similarity index 61%
rename from src/app/dashboard/layout.tsx
rename to src/app/(main)/layout.tsx
index fb9a7bd..e2db7b1 100644
--- a/src/app/dashboard/layout.tsx
+++ b/src/app/(main)/layout.tsx
@@ -1,20 +1,16 @@
-import type { Metadata } from "next";
import AppBar from "@/components/AppBar";
import { getServerSession } from "next-auth";
import { authOptions } from "@/config/authConfig";
import { redirect } from "next/navigation";
+import Box from "@mui/material/Box";
+import { NAVIGATION_CONTENT_WIDTH } from "@/config/uiConfig";
-export const metadata: Metadata = {
- title: "Dashboard",
-};
-
-export default async function DashboardLayout({
+export default async function MainLayout({
children,
}: {
children: React.ReactNode;
}) {
const session = await getServerSession(authOptions);
- console.log(session);
if (!session?.user) {
redirect("/login");
@@ -26,7 +22,14 @@ export default async function DashboardLayout({
profileName={session.user.name!}
avatarImageSrc={session.user.image || undefined}
/>
- {children}
+
+ {children}
+
>
);
}
diff --git a/src/app/(main)/projects/page.tsx b/src/app/(main)/projects/page.tsx
new file mode 100644
index 0000000..60918d2
--- /dev/null
+++ b/src/app/(main)/projects/page.tsx
@@ -0,0 +1,11 @@
+import { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Projects",
+};
+
+const Projects: React.FC = async () => {
+ return "Projects";
+};
+
+export default Projects;
diff --git a/src/app/(main)/settings/page.tsx b/src/app/(main)/settings/page.tsx
new file mode 100644
index 0000000..c3b9620
--- /dev/null
+++ b/src/app/(main)/settings/page.tsx
@@ -0,0 +1,11 @@
+import { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Settings",
+};
+
+const Settings: React.FC = async () => {
+ return "Settings";
+};
+
+export default Settings;
diff --git a/src/app/(main)/tasks/page.tsx b/src/app/(main)/tasks/page.tsx
new file mode 100644
index 0000000..7acf681
--- /dev/null
+++ b/src/app/(main)/tasks/page.tsx
@@ -0,0 +1,11 @@
+import { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Tasks",
+};
+
+const Tasks: React.FC = async () => {
+ return "Tasks";
+};
+
+export default Tasks;
diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx
deleted file mode 100644
index 5f24ae0..0000000
--- a/src/app/dashboard/page.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-const Dashboard: React.FC = async () => {
- return "Dashboard (protected)";
-};
-
-export default Dashboard;
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 9271349..844c060 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,7 +1,7 @@
import { permanentRedirect } from "next/navigation";
const Home: React.FC = async () => {
- permanentRedirect("/dashboard");
+ permanentRedirect("/home");
};
export default Home;
diff --git a/src/components/AppBar/AppBar.tsx b/src/components/AppBar/AppBar.tsx
index 66d8f28..4cac1a7 100644
--- a/src/components/AppBar/AppBar.tsx
+++ b/src/components/AppBar/AppBar.tsx
@@ -13,9 +13,9 @@ export interface AppBarProps {
const AppBar: React.FC = ({ avatarImageSrc, profileName }) => {
return (
-
-
-
+
+
+
= ({ avatarImageSrc, profileName }) => {
profileName={profileName}
/>
-
-
-
+
+
+
);
};
diff --git a/src/components/NavigationContent/NavigationContent.tsx b/src/components/NavigationContent/NavigationContent.tsx
index cb88a18..9586b57 100644
--- a/src/components/NavigationContent/NavigationContent.tsx
+++ b/src/components/NavigationContent/NavigationContent.tsx
@@ -17,6 +17,7 @@ import { useTranslation } from "react-i18next";
import Typography from "@mui/material/Typography";
import { usePathname } from "next/navigation";
import Link from "next/link";
+import { NAVIGATION_CONTENT_WIDTH } from "@/config/uiConfig";
interface NavigationItem {
icon: React.ReactNode;
@@ -25,7 +26,7 @@ interface NavigationItem {
}
const navigationItems: NavigationItem[] = [
- { icon: , label: "User Workspace", path: "/workspace" },
+ { icon: , label: "User Workspace", path: "/home" },
{ icon: , label: "Dashboard", path: "/dashboard" },
{ icon: , label: "Expense Claim", path: "/claim" },
{ icon: , label: "Project Management", path: "/projects" },
@@ -40,7 +41,7 @@ const NavigationContent: React.FC = () => {
const pathname = usePathname();
return (
-
+
{/* Replace this with company logo and/or name */}
TSMS
@@ -49,13 +50,17 @@ const NavigationContent: React.FC = () => {
{navigationItems.map(({ icon, label, path }, index) => {
return (
-
- {icon}
- {t(label)}} />
-
+
+ {icon}
+
+
+
);
})}
diff --git a/src/config/uiConfig.ts b/src/config/uiConfig.ts
new file mode 100644
index 0000000..f9d60b3
--- /dev/null
+++ b/src/config/uiConfig.ts
@@ -0,0 +1 @@
+export const NAVIGATION_CONTENT_WIDTH = "20rem";
diff --git a/src/theme/devias-material-kit/components.ts b/src/theme/devias-material-kit/components.ts
index a6c8f6e..fb88084 100644
--- a/src/theme/devias-material-kit/components.ts
+++ b/src/theme/devias-material-kit/components.ts
@@ -304,10 +304,6 @@ const components: ThemeOptions["components"] = {
root: {
borderRadius: 8,
marginBlockEnd: "0.5rem",
- a: {
- textDecoration: "none",
- color: "inherit",
- }
},
},
},