update the router

This commit is contained in:
Saeed AB 2025-08-11 03:37:14 +03:30
parent 186396ad09
commit 679f2b5d3a
2 changed files with 10 additions and 0 deletions

View File

@ -4,6 +4,7 @@ export default [
route("login", "routes/login.tsx"), route("login", "routes/login.tsx"),
route("dashboard", "routes/dashboard.tsx"), route("dashboard", "routes/dashboard.tsx"),
route("dashboard/project-management", "routes/project-management.tsx"), route("dashboard/project-management", "routes/project-management.tsx"),
route("dashboard/innovation-basket/process-innovation", "routes/innovation-basket.process-innovation.tsx"),
route("projects", "routes/projects.tsx"), route("projects", "routes/projects.tsx"),
route("404", "routes/404.tsx"), route("404", "routes/404.tsx"),
route("unauthorized", "routes/unauthorized.tsx"), route("unauthorized", "routes/unauthorized.tsx"),

9
tailwind.config.js Normal file
View File

@ -0,0 +1,9 @@
module.exports = {
theme: {
extend: {
colors: {
}
},
},
};