feat: start innvoation-built-in page
This commit is contained in:
parent
957b05cdbd
commit
8df1fbc422
|
|
@ -41,8 +41,7 @@ import {
|
|||
UsersIcon,
|
||||
UserIcon,
|
||||
RefreshCw,
|
||||
Radar,
|
||||
Cog,
|
||||
|
||||
ChevronUp,
|
||||
ChevronDown,
|
||||
} from "lucide-react";
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -6,15 +6,19 @@ export default [
|
|||
route("dashboard/project-management", "routes/project-management.tsx"),
|
||||
route(
|
||||
"dashboard/innovation-basket/process-innovation",
|
||||
"routes/innovation-basket.process-innovation.tsx",
|
||||
"routes/innovation-basket.process-innovation.tsx"
|
||||
),
|
||||
route(
|
||||
"dashboard/innovation-basket/green-innovation",
|
||||
"routes/green-innovation.tsx",
|
||||
"routes/green-innovation.tsx"
|
||||
),
|
||||
route(
|
||||
"/dashboard/innovation-basket/internal-innovation",
|
||||
"routes/innovation-built-insider-page.tsx"
|
||||
),
|
||||
route(
|
||||
"/dashboard/innovation-basket/digital-innovation",
|
||||
"routes/digital-innovation-page.tsx",
|
||||
"routes/digital-innovation-page.tsx"
|
||||
),
|
||||
route("dashboard/ecosystem", "routes/ecosystem.tsx"),
|
||||
route("404", "routes/404.tsx"),
|
||||
|
|
|
|||
17
app/routes/innovation-built-insider-page.tsx
Normal file
17
app/routes/innovation-built-insider-page.tsx
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { ProtectedRoute } from "~/components/auth/protected-route";
|
||||
import InnovationBuiltInsidePage from "~/components/dashboard/project-management/innovation-built-inside-page";
|
||||
|
||||
export function meta() {
|
||||
return [
|
||||
{ title: "نوآوری در فرآیند - سیستم مدیریت فناوری و نوآوری" },
|
||||
{ name: "description", content: "مدیریت پروژههای نوآوری در فرآیند" },
|
||||
];
|
||||
}
|
||||
|
||||
export default function InnovationBuiltInside() {
|
||||
return (
|
||||
<ProtectedRoute requireAuth={true}>
|
||||
<InnovationBuiltInsidePage />
|
||||
</ProtectedRoute>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user