diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..37ebaa9 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,128 @@ +import { Calendar, Users, Star, Award } from 'lucide-react' + +function App() { + return ( +
+ {/* Header */} +
+
+
+
+
+ Logo +
+
+

Dashboard

+
+
+ +
+
+
+ + {/* Main Content */} +
+
+
+ {/* Stats Cards */} +
+
+
+
+ +
+
+
+
Total Users
+
1,234
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
Events
+
56
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
Rating
+
4.8
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
Awards
+
12
+
+
+
+
+
+
+ + {/* Content Section */} +
+
+
+

Welcome to your dashboard

+
+

This is a sample dashboard built with React, Vite, and Tailwind CSS.

+
+
+ +
+
+
+
+
+
+
+ ) +} + +export default App \ No newline at end of file