Reviewed-on: https://git.pelekan.org/Saeed0920/inogen/pulls/9 Co-authored-by: saeed0920 <sd.eed1381@gmail.com> Co-committed-by: saeed0920 <sd.eed1381@gmail.com>
17 lines
572 B
TypeScript
17 lines
572 B
TypeScript
import { ProductInnovationPage } from "~/components/dashboard/project-management/product-innovation-page";
|
|
import { ProtectedRoute } from "~/components/auth/protected-route";
|
|
|
|
export function meta() {
|
|
return [
|
|
{ title: "نوآوری محصول - سیستم مدیریت فناوری و نوآوری" },
|
|
{ name: "description", content: "مدیریت پروژههای نوآوری محصول" },
|
|
];
|
|
}
|
|
|
|
export default function ProductInnovation() {
|
|
return (
|
|
<ProtectedRoute requireAuth={true}>
|
|
<ProductInnovationPage />
|
|
</ProtectedRoute>
|
|
);
|
|
} |