From 5d6472afbd35664814762fb1390ee5df7919c006 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 14:53:20 +0000 Subject: [PATCH 1/2] Bob AI: Add dashboard page --- src/App.tsx | 2 + src/components/Layout.tsx | 4 +- src/pages/DashboardPage.tsx | 107 ++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 113 insertions(+), 1 deletion(-) create mode 100644 src/pages/DashboardPage.tsx 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..9e38d7c --- /dev/null +++ b/src/pages/DashboardPage.tsx @@ -0,0 +1,107 @@ +import React from "react"; +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import MetricsSimpleCards from "@/components/sections/metrics/MetricsSimpleCards"; +import FeaturesDetailedSteps from "@/components/sections/features/FeaturesDetailedSteps"; + +export default function DashboardPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "התנתק", href: "/" }} + /> + +
+ {/* Sidebar Simulation */} + + + {/* Main Content Area */} +
+ {/* Topbar Simulation */} +
+
+

סקירה כללית

+

ניהול חודשי וסטטוס הפקות דוחות דיאליזה

+
+
+ + + סטטוס: פעיל ותקין + +
+
+ +
+ + + +
+
+
+
+ ); +} \ No newline at end of file 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' }, ]; -- 2.49.1 From 257aa14dc838cee85a016a52a469d5b00286be86 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 14:53:59 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/DashboardPage.tsx (snippet builder, 2 sections) --- src/pages/DashboardPage.tsx | 124 ++++++------------------------------ 1 file changed, 21 insertions(+), 103 deletions(-) diff --git a/src/pages/DashboardPage.tsx b/src/pages/DashboardPage.tsx index 9e38d7c..697c24a 100644 --- a/src/pages/DashboardPage.tsx +++ b/src/pages/DashboardPage.tsx @@ -1,107 +1,25 @@ -import React from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import MetricsSimpleCards from "@/components/sections/metrics/MetricsSimpleCards"; -import FeaturesDetailedSteps from "@/components/sections/features/FeaturesDetailedSteps"; +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 ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "התנתק", href: "/" }} - /> - -
- {/* Sidebar Simulation */} - - - {/* Main Content Area */} -
- {/* Topbar Simulation */} -
-
-

סקירה כללית

-

ניהול חודשי וסטטוס הפקות דוחות דיאליזה

-
-
- - - סטטוס: פעיל ותקין - -
-
- -
- - - -
-
-
-
+ <> +
+

תהליך עבודה

שלב 1

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

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

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

+

שלב 2

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

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

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

+

שלב 3

הפקת דוחות

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

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

+

שלב 4

ייצוא והפצה

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

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

+ ); -} \ No newline at end of file +} -- 2.49.1