From d11586d99bf3456b0b24493753d1fa330459a805 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 16 Jan 2026 11:56:20 +0000 Subject: [PATCH] Add src/components/Dashboard.tsx --- src/components/Dashboard.tsx | 109 +++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 src/components/Dashboard.tsx diff --git a/src/components/Dashboard.tsx b/src/components/Dashboard.tsx new file mode 100644 index 0000000..7f9ec13 --- /dev/null +++ b/src/components/Dashboard.tsx @@ -0,0 +1,109 @@ +import React from 'react'; +import { TrendingUp, Users, Calendar, BarChart3 } from 'lucide-react'; + +const Dashboard: React.FC = () => { + return ( +
+ {/* Header */} +
+
+
+
+ Logo + Dashboard +
+
+ +
+
+
+
+ + {/* Main Content */} +
+ {/* Stats Grid */} +
+
+
+
+ +
+
+

Total Revenue

+

$45,231

+
+
+
+ +
+
+
+ +
+
+

Active Users

+

2,451

+
+
+
+ +
+
+
+ +
+
+

Events

+

12

+
+
+
+ +
+
+
+ +
+
+

Conversion

+

3.24%

+
+
+
+
+ + {/* Chart Section */} +
+
+

Analytics Overview

+
+

Chart placeholder

+
+
+ +
+

Recent Activity

+
+
+
+ User registered +
+
+
+ New order received +
+
+
+ Payment processed +
+
+
+
+
+
+ ); +}; + +export default Dashboard; \ No newline at end of file