inogen/app/routes/manage-ideas-tech-page.tsx
2025-09-20 21:31:50 +03:30

18 lines
534 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { ProtectedRoute } from "~/components/auth/protected-route";
import { ManageIdeasTechPage } from "~/components/dashboard/project-management/mange-ideas-tech-page";
export function meta() {
return [
{ title: "مدیریت فناوری و ایده ها" },
{ name: "description", content: "مدیریت پروژه‌های فناوری و نوآوری" },
];
}
export default function ManageIdeasTech() {
return (
<ProtectedRoute requireAuth={true}>
<ManageIdeasTechPage />
</ProtectedRoute>
);
}