SamABFlow commited on
Commit
970044a
·
verified ·
1 Parent(s): 0678125

Can you make the font to Calibri or Aptos - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +513 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Compliance 3
3
- emoji:
4
- colorFrom: purple
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: compliance-3
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,513 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>AffableBPM | Grant Management System</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ :root {
11
+ --primary-color: #2c97a7;
12
+ --primary-dark: #0A829D;
13
+ --primary-light: #afeeee;
14
+ }
15
+
16
+ body {
17
+ font-family: 'Aptos', 'Calibri', sans-serif;
18
+ background-color: #f8fafc;
19
+ }
20
+
21
+ .jazz-font {
22
+ font-family: 'Aptos', 'Calibri', sans-serif;
23
+ font-weight: bold;
24
+ }
25
+
26
+ .sidebar {
27
+ transition: all 0.3s ease;
28
+ }
29
+
30
+ .workflow-step {
31
+ position: relative;
32
+ }
33
+
34
+ .workflow-step:not(:last-child):after {
35
+ content: '';
36
+ position: absolute;
37
+ top: 24px;
38
+ left: 50%;
39
+ height: 40px;
40
+ width: 2px;
41
+ background-color: var(--primary-color);
42
+ }
43
+
44
+ .grant-card:hover {
45
+ transform: translateY(-5px);
46
+ box-shadow: 0 10px 20px rgba(64, 224, 208, 0.2);
47
+ }
48
+
49
+ @media (max-width: 768px) {
50
+ .sidebar {
51
+ transform: translateX(-100%);
52
+ }
53
+ .sidebar.active {
54
+ transform: translateX(0);
55
+ }
56
+ }
57
+ </style>
58
+ </head>
59
+ <body class="bg-gray-50">
60
+ <!-- Mobile Menu Button -->
61
+ <div class="md:hidden fixed top-4 left-4 z-50">
62
+ <button id="mobileMenuBtn" class="p-2 rounded-lg bg-[#0A829D] text-white">
63
+ <i class="fas fa-bars"></i>
64
+ </button>
65
+ </div>
66
+
67
+ <!-- Sidebar -->
68
+ <div class="sidebar fixed h-screen w-64 bg-white shadow-lg z-40">
69
+ <div class="p-4 bg-[#0A829D] flex items-center">
70
+ <div class="w-10 h-10 rounded-full bg-white flex items-center justify-center mr-3">
71
+ <i class="fas fa-gem text-[#0A829D] text-xl"></i>
72
+ </div>
73
+ <h1 class="text-white text-xl font-bold jazz-font">AffableBPM</h1>
74
+ </div>
75
+
76
+ <div class="p-4">
77
+ <div class="flex items-center mb-6">
78
+ <div class="w-12 h-12 rounded-full bg-[#E0F7FA] flex items-center justify-center mr-3">
79
+ <i class="fas fa-user text-[#0A829D]"></i>
80
+ </div>
81
+ <div>
82
+ <p class="font-semibold">Admin User</p>
83
+ <p class="text-xs text-gray-500">Administrator</p>
84
+ </div>
85
+ </div>
86
+
87
+ <nav>
88
+ <ul class="space-y-2">
89
+ <li>
90
+ <a href="#" class="flex items-center p-3 rounded-lg bg-[#E0F7FA] text-[#0A829D]">
91
+ <i class="fas fa-tachometer-alt mr-3"></i>
92
+ <span>Dashboard</span>
93
+ </a>
94
+ </li>
95
+ <li>
96
+ <a href="#" class="flex items-center p-3 rounded-lg hover:bg-teal-50 hover:text-teal-600">
97
+ <i class="fas fa-project-diagram mr-3"></i>
98
+ <span>Workflows</span>
99
+ </a>
100
+ </li>
101
+ <li>
102
+ <a href="#" class="flex items-center p-3 rounded-lg hover:bg-teal-50 hover:text-teal-600">
103
+ <i class="fas fa-hand-holding-usd mr-3"></i>
104
+ <span>Grants</span>
105
+ </a>
106
+ </li>
107
+ <li>
108
+ <a href="#" class="flex items-center p-3 rounded-lg hover:bg-teal-50 hover:text-teal-600">
109
+ <i class="fas fa-users mr-3"></i>
110
+ <span>Applicants</span>
111
+ </a>
112
+ </li>
113
+ <li>
114
+ <a href="#" class="flex items-center p-3 rounded-lg hover:bg-teal-50 hover:text-teal-600">
115
+ <i class="fas fa-file-invoice-dollar mr-3"></i>
116
+ <span>Reports</span>
117
+ </a>
118
+ </li>
119
+ <li>
120
+ <a href="#" class="flex items-center p-3 rounded-lg hover:bg-teal-50 hover:text-teal-600">
121
+ <i class="fas fa-cog mr-3"></i>
122
+ <span>Settings</span>
123
+ </a>
124
+ </li>
125
+ </ul>
126
+ </nav>
127
+ </div>
128
+
129
+ <div class="absolute bottom-0 w-full p-4 border-t">
130
+ <a href="#" class="flex items-center p-3 rounded-lg hover:bg-teal-50 hover:text-teal-600">
131
+ <i class="fas fa-sign-out-alt mr-3"></i>
132
+ <span>Logout</span>
133
+ </a>
134
+ </div>
135
+ </div>
136
+
137
+ <!-- Main Content -->
138
+ <div class="ml-0 md:ml-64 transition-all duration-300">
139
+ <!-- Header -->
140
+ <header class="bg-white shadow-sm p-4 flex justify-between items-center">
141
+ <h2 class="text-2xl font-bold text-gray-800 jazz-font">Grant Management Dashboard</h2>
142
+ <div class="flex items-center space-x-4">
143
+ <div class="relative">
144
+ <button class="p-2 rounded-full hover:bg-teal-50">
145
+ <i class="fas fa-bell text-gray-600"></i>
146
+ <span class="absolute top-0 right-0 w-2 h-2 bg-red-500 rounded-full"></span>
147
+ </button>
148
+ </div>
149
+ <div class="relative">
150
+ <button class="p-2 rounded-full hover:bg-teal-50">
151
+ <i class="fas fa-envelope text-gray-600"></i>
152
+ <span class="absolute top-0 right-0 w-2 h-2 bg-red-500 rounded-full"></span>
153
+ </button>
154
+ </div>
155
+ <div class="w-8 h-8 rounded-full bg-[#0A829D] flex items-center justify-center text-white">
156
+ <i class="fas fa-user"></i>
157
+ </div>
158
+ </div>
159
+ </header>
160
+
161
+ <!-- Dashboard Content -->
162
+ <main class="p-6">
163
+ <!-- Stats Cards -->
164
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
165
+ <div class="bg-white rounded-xl shadow-md p-6 border-l-4 border-[#0A829D]">
166
+ <div class="flex justify-between">
167
+ <div>
168
+ <p class="text-gray-500">Total Grants</p>
169
+ <h3 class="text-3xl font-bold text-gray-800">142</h3>
170
+ </div>
171
+ <div class="w-12 h-12 rounded-full bg-[#E0F7FA] flex items-center justify-center">
172
+ <i class="fas fa-hand-holding-usd text-[#0A829D]"></i>
173
+ </div>
174
+ </div>
175
+ <p class="text-sm text-[#0A829D] mt-2"><i class="fas fa-arrow-up mr-1"></i> 12% from last month</p>
176
+ </div>
177
+
178
+ <div class="bg-white rounded-xl shadow-md p-6 border-l-4 border-blue-500">
179
+ <div class="flex justify-between">
180
+ <div>
181
+ <p class="text-gray-500">Active Applications</p>
182
+ <h3 class="text-3xl font-bold text-gray-800">87</h3>
183
+ </div>
184
+ <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center">
185
+ <i class="fas fa-file-alt text-blue-500"></i>
186
+ </div>
187
+ </div>
188
+ <p class="text-sm text-blue-500 mt-2"><i class="fas fa-arrow-up mr-1"></i> 8% from last month</p>
189
+ </div>
190
+
191
+ <div class="bg-white rounded-xl shadow-md p-6 border-l-4 border-purple-500">
192
+ <div class="flex justify-between">
193
+ <div>
194
+ <p class="text-gray-500">Approved Grants</p>
195
+ <h3 class="text-3xl font-bold text-gray-800">64</h3>
196
+ </div>
197
+ <div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center">
198
+ <i class="fas fa-check-circle text-purple-500"></i>
199
+ </div>
200
+ </div>
201
+ <p class="text-sm text-purple-500 mt-2"><i class="fas fa-arrow-up mr-1"></i> 15% from last month</p>
202
+ </div>
203
+
204
+ <div class="bg-white rounded-xl shadow-md p-6 border-l-4 border-amber-500">
205
+ <div class="flex justify-between">
206
+ <div>
207
+ <p class="text-gray-500">Pending Review</p>
208
+ <h3 class="text-3xl font-bold text-gray-800">23</h3>
209
+ </div>
210
+ <div class="w-12 h-12 rounded-full bg-amber-100 flex items-center justify-center">
211
+ <i class="fas fa-clock text-amber-500"></i>
212
+ </div>
213
+ </div>
214
+ <p class="text-sm text-amber-500 mt-2"><i class="fas fa-arrow-down mr-1"></i> 5% from last month</p>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Recent Grants and Workflow -->
219
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-8">
220
+ <!-- Recent Grants -->
221
+ <div class="lg:col-span-2 bg-white rounded-xl shadow-md p-6">
222
+ <div class="flex justify-between items-center mb-6">
223
+ <h3 class="text-xl font-bold text-gray-800 jazz-font">Recent Grant Applications</h3>
224
+ <button class="text-[#0A829D] hover:text-[#2c97a7]">View All</button>
225
+ </div>
226
+
227
+ <div class="overflow-x-auto">
228
+ <table class="min-w-full divide-y divide-gray-200">
229
+ <thead>
230
+ <tr>
231
+ <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">ID</th>
232
+ <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Applicant</th>
233
+ <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Amount</th>
234
+ <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th>
235
+ <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
236
+ </tr>
237
+ </thead>
238
+ <tbody class="bg-white divide-y divide-gray-200">
239
+ <tr class="hover:bg-teal-50">
240
+ <td class="px-4 py-3 whitespace-nowrap">#GR-2023-001</td>
241
+ <td class="px-4 py-3 whitespace-nowrap">Green Energy Solutions</td>
242
+ <td class="px-4 py-3 whitespace-nowrap">$25,000</td>
243
+ <td class="px-4 py-3 whitespace-nowrap">
244
+ <span class="px-2 py-1 text-xs rounded-full bg-[#E0F7FA] text-[#0A829D]">Approved</span>
245
+ </td>
246
+ <td class="px-4 py-3 whitespace-nowrap">2023-06-15</td>
247
+ </tr>
248
+ <tr class="hover:bg-teal-50">
249
+ <td class="px-4 py-3 whitespace-nowrap">#GR-2023-002</td>
250
+ <td class="px-4 py-3 whitespace-nowrap">Community Health Initiative</td>
251
+ <td class="px-4 py-3 whitespace-nowrap">$50,000</td>
252
+ <td class="px-4 py-3 whitespace-nowrap">
253
+ <span class="px-2 py-1 text-xs rounded-full bg-blue-100 text-blue-800">In Review</span>
254
+ </td>
255
+ <td class="px-4 py-3 whitespace-nowrap">2023-06-18</td>
256
+ </tr>
257
+ <tr class="hover:bg-teal-50">
258
+ <td class="px-4 py-3 whitespace-nowrap">#GR-2023-003</td>
259
+ <td class="px-4 py-3 whitespace-nowrap">Education for All</td>
260
+ <td class="px-4 py-3 whitespace-nowrap">$15,000</td>
261
+ <td class="px-4 py-3 whitespace-nowrap">
262
+ <span class="px-2 py-1 text-xs rounded-full bg-amber-100 text-amber-800">Pending</span>
263
+ </td>
264
+ <td class="px-4 py-3 whitespace-nowrap">2023-06-20</td>
265
+ </tr>
266
+ <tr class="hover:bg-teal-50">
267
+ <td class="px-4 py-3 whitespace-nowrap">#GR-2023-004</td>
268
+ <td class="px-4 py-3 whitespace-nowrap">Tech Startups Inc.</td>
269
+ <td class="px-4 py-3 whitespace-nowrap">$75,000</td>
270
+ <td class="px-4 py-3 whitespace-nowrap">
271
+ <span class="px-2 py-1 text-xs rounded-full bg-purple-100 text-purple-800">Funded</span>
272
+ </td>
273
+ <td class="px-4 py-3 whitespace-nowrap">2023-06-22</td>
274
+ </tr>
275
+ <tr class="hover:bg-teal-50">
276
+ <td class="px-4 py-3 whitespace-nowrap">#GR-2023-005</td>
277
+ <td class="px-4 py-3 whitespace-nowrap">Urban Farming Collective</td>
278
+ <td class="px-4 py-3 whitespace-nowrap">$30,000</td>
279
+ <td class="px-4 py-3 whitespace-nowrap">
280
+ <span class="px-2 py-1 text-xs rounded-full bg-red-100 text-red-800">Rejected</span>
281
+ </td>
282
+ <td class="px-4 py-3 whitespace-nowrap">2023-06-25</td>
283
+ </tr>
284
+ </tbody>
285
+ </table>
286
+ </div>
287
+ </div>
288
+
289
+ <!-- Workflow Status -->
290
+ <div class="bg-white rounded-xl shadow-md p-6">
291
+ <div class="flex justify-between items-center mb-6">
292
+ <h3 class="text-xl font-bold text-gray-800 jazz-font">Grant Approval Workflow</h3>
293
+ <button class="text-teal-500 hover:text-teal-700">Configure</button>
294
+ </div>
295
+
296
+ <div class="space-y-8">
297
+ <div class="workflow-step">
298
+ <div class="flex flex-col items-center">
299
+ <div class="w-12 h-12 rounded-full bg-[#0A829D] flex items-center justify-center text-white mb-2">
300
+ <i class="fas fa-file-alt"></i>
301
+ </div>
302
+ <p class="font-semibold">Application</p>
303
+ <p class="text-sm text-gray-500">Submitted</p>
304
+ </div>
305
+ </div>
306
+
307
+ <div class="workflow-step">
308
+ <div class="flex flex-col items-center">
309
+ <div class="w-12 h-12 rounded-full bg-blue-500 flex items-center justify-center text-white mb-2">
310
+ <i class="fas fa-search"></i>
311
+ </div>
312
+ <p class="font-semibold">Review</p>
313
+ <p class="text-sm text-gray-500">In Progress</p>
314
+ </div>
315
+ </div>
316
+
317
+ <div class="workflow-step">
318
+ <div class="flex flex-col items-center">
319
+ <div class="w-12 h-12 rounded-full bg-gray-300 flex items-center justify-center text-white mb-2">
320
+ <i class="fas fa-check-double"></i>
321
+ </div>
322
+ <p class="font-semibold">Approval</p>
323
+ <p class="text-sm text-gray-500">Pending</p>
324
+ </div>
325
+ </div>
326
+
327
+ <div class="workflow-step">
328
+ <div class="flex flex-col items-center">
329
+ <div class="w-12 h-12 rounded-full bg-gray-300 flex items-center justify-center text-white mb-2">
330
+ <i class="fas fa-money-bill-wave"></i>
331
+ </div>
332
+ <p class="font-semibold">Funding</p>
333
+ <p class="text-sm text-gray-500">Not Started</p>
334
+ </div>
335
+ </div>
336
+
337
+ <div class="workflow-step">
338
+ <div class="flex flex-col items-center">
339
+ <div class="w-12 h-12 rounded-full bg-gray-300 flex items-center justify-center text-white mb-2">
340
+ <i class="fas fa-chart-line"></i>
341
+ </div>
342
+ <p class="font-semibold">Monitoring</p>
343
+ <p class="text-sm text-gray-500">Not Started</p>
344
+ </div>
345
+ </div>
346
+ </div>
347
+ </div>
348
+ </div>
349
+
350
+ <!-- Grant Programs -->
351
+ <div class="mb-8">
352
+ <div class="flex justify-between items-center mb-6">
353
+ <h3 class="text-xl font-bold text-gray-800 jazz-font">Active Grant Programs</h3>
354
+ <button class="text-teal-500 hover:text-teal-700">Create New</button>
355
+ </div>
356
+
357
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
358
+ <div class="grant-card bg-white rounded-xl shadow-md p-6 border-t-4 border-[#0A829D] transition duration-300">
359
+ <div class="flex justify-between items-start mb-4">
360
+ <div>
361
+ <h4 class="font-bold text-lg">Community Development</h4>
362
+ <p class="text-sm text-gray-500">Deadline: 2023-08-15</p>
363
+ </div>
364
+ <span class="px-2 py-1 text-xs rounded-full bg-teal-100 text-teal-800">Open</span>
365
+ </div>
366
+ <p class="text-gray-600 mb-4">Funding for projects that enhance community infrastructure and services.</p>
367
+ <div class="flex justify-between items-center">
368
+ <div>
369
+ <p class="text-sm text-gray-500">Total Funding</p>
370
+ <p class="font-bold">$500,000</p>
371
+ </div>
372
+ <button class="px-4 py-2 bg-[#0A829D] text-white rounded-lg hover:bg-[#2c97a7]">View Details</button>
373
+ </div>
374
+ </div>
375
+
376
+ <div class="grant-card bg-white rounded-xl shadow-md p-6 border-t-4 border-blue-500 transition duration-300">
377
+ <div class="flex justify-between items-start mb-4">
378
+ <div>
379
+ <h4 class="font-bold text-lg">STEM Education</h4>
380
+ <p class="text-sm text-gray-500">Deadline: 2023-09-01</p>
381
+ </div>
382
+ <span class="px-2 py-1 text-xs rounded-full bg-blue-100 text-blue-800">Open</span>
383
+ </div>
384
+ <p class="text-gray-600 mb-4">Grants for schools and organizations promoting STEM education.</p>
385
+ <div class="flex justify-between items-center">
386
+ <div>
387
+ <p class="text-sm text-gray-500">Total Funding</p>
388
+ <p class="font-bold">$350,000</p>
389
+ </div>
390
+ <button class="px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600">View Details</button>
391
+ </div>
392
+ </div>
393
+
394
+ <div class="grant-card bg-white rounded-xl shadow-md p-6 border-t-4 border-purple-500 transition duration-300">
395
+ <div class="flex justify-between items-start mb-4">
396
+ <div>
397
+ <h4 class="font-bold text-lg">Green Innovation</h4>
398
+ <p class="text-sm text-gray-500">Deadline: 2023-07-30</p>
399
+ </div>
400
+ <span class="px-2 py-1 text-xs rounded-full bg-purple-100 text-purple-800">Closing Soon</span>
401
+ </div>
402
+ <p class="text-gray-600 mb-4">Support for innovative projects addressing environmental challenges.</p>
403
+ <div class="flex justify-between items-center">
404
+ <div>
405
+ <p class="text-sm text-gray-500">Total Funding</p>
406
+ <p class="font-bold">$750,000</p>
407
+ </div>
408
+ <button class="px-4 py-2 bg-purple-500 text-white rounded-lg hover:bg-purple-600">View Details</button>
409
+ </div>
410
+ </div>
411
+ </div>
412
+ </div>
413
+
414
+ <!-- Charts -->
415
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
416
+ <!-- Applications by Month -->
417
+ <div class="bg-white rounded-xl shadow-md p-6">
418
+ <div class="flex justify-between items-center mb-6">
419
+ <h3 class="text-xl font-bold text-gray-800 jazz-font">Applications by Month</h3>
420
+ <div class="flex space-x-2">
421
+ <button class="px-3 py-1 text-xs bg-[#0A829D] text-white rounded">2023</button>
422
+ <button class="px-3 py-1 text-xs bg-gray-200 text-gray-700 rounded">2022</button>
423
+ </div>
424
+ </div>
425
+ <div class="h-64">
426
+ <canvas id="applicationsChart"></canvas>
427
+ </div>
428
+ </div>
429
+
430
+ <!-- Grants by Category -->
431
+ <div class="bg-white rounded-xl shadow-md p-6">
432
+ <div class="flex justify-between items-center mb-6">
433
+ <h3 class="text-xl font-bold text-gray-800 jazz-font">Grants by Category</h3>
434
+ <button class="text-teal-500 hover:text-teal-700">View All</button>
435
+ </div>
436
+ <div class="h-64">
437
+ <canvas id="categoriesChart"></canvas>
438
+ </div>
439
+ </div>
440
+ </div>
441
+ </main>
442
+ </div>
443
+
444
+ <!-- Scripts -->
445
+ <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
446
+ <script>
447
+ // Mobile menu toggle
448
+ document.getElementById('mobileMenuBtn').addEventListener('click', function() {
449
+ document.querySelector('.sidebar').classList.toggle('active');
450
+ });
451
+
452
+ // Applications by Month Chart
453
+ const applicationsCtx = document.getElementById('applicationsChart').getContext('2d');
454
+ const applicationsChart = new Chart(applicationsCtx, {
455
+ type: 'bar',
456
+ data: {
457
+ labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
458
+ datasets: [{
459
+ label: 'Applications',
460
+ data: [12, 19, 15, 21, 18, 25, 22, 30, 28, 24, 20, 17],
461
+ backgroundColor: '#2c97a7',
462
+ borderColor: '#0A829D',
463
+ borderWidth: 1
464
+ }]
465
+ },
466
+ options: {
467
+ responsive: true,
468
+ maintainAspectRatio: false,
469
+ scales: {
470
+ y: {
471
+ beginAtZero: true
472
+ }
473
+ },
474
+ plugins: {
475
+ legend: {
476
+ display: false
477
+ }
478
+ }
479
+ }
480
+ });
481
+
482
+ // Grants by Category Chart
483
+ const categoriesCtx = document.getElementById('categoriesChart').getContext('2d');
484
+ const categoriesChart = new Chart(categoriesCtx, {
485
+ type: 'doughnut',
486
+ data: {
487
+ labels: ['Education', 'Health', 'Environment', 'Community', 'Arts', 'Technology'],
488
+ datasets: [{
489
+ data: [25, 20, 15, 18, 12, 10],
490
+ backgroundColor: [
491
+ '#2c97a7',
492
+ '#4682b4',
493
+ '#9370db',
494
+ '#ff7f50',
495
+ '#ff69b4',
496
+ '#0A829D'
497
+ ],
498
+ borderWidth: 1
499
+ }]
500
+ },
501
+ options: {
502
+ responsive: true,
503
+ maintainAspectRatio: false,
504
+ plugins: {
505
+ legend: {
506
+ position: 'right',
507
+ }
508
+ }
509
+ }
510
+ });
511
+ </script>
512
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=SamABFlow/compliance-3" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
513
+ </html>