diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..21c0cfa 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; +import DashboardPage from "@/pages/DashboardPage"; export default function App() { return ( }> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 0206f49..b5414a1 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -30,7 +30,9 @@ export default function Layout() { { "name": "Contact", "href": "#contact" - } + }, + { name: "Dashboard", href: "/dashboard" }, + ]; return ( diff --git a/src/pages/DashboardPage.tsx b/src/pages/DashboardPage.tsx new file mode 100644 index 0000000..697c24a --- /dev/null +++ b/src/pages/DashboardPage.tsx @@ -0,0 +1,25 @@ +import MetricsIconCards from "@/components/sections/metrics/MetricsIconCards"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import { cls } from "@/lib/utils"; + +export default function DashboardPage() { + return ( + <> +
+

תהליך עבודה

שלב 1

ייבוא ומיפוי נתונים

קליטת נתונים ממערכות המרפאה

ייבוא אוטומטי של מדדי מטופלים ומיפוי חכם למערכת הדוחות.

+

שלב 2

בקרת איכות ואימות

בדיקת חריגים ואישור נתונים

זיהוי אוטומטי של מדדים חריגים ואישור ידני על ידי הצוות הרפואי.

+

שלב 3

הפקת דוחות

יצירת דוח חודשי מרוכז

הפקה מהירה של דוחות דיאליזה חודשיים העומדים בתקני הרגולציה.

+

שלב 4

ייצוא והפצה

שליחה לגורמים המאשרים

הפצת הדוחות המאושרים לרופאים, מנהלי מרפאות וגורמי רגולציה.

+ + ); +} diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..6f95978 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/dashboard', label: 'Dashboard', pageFile: 'DashboardPage' }, ];