anktechsol commited on
Commit
ab3556f
·
verified ·
1 Parent(s): e8323fa

Button not clickable for Generate Sample Report - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +423 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Anupalan Karta
3
- emoji: 💻
4
- colorFrom: indigo
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: anupalan-karta
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: red
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,423 @@
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>Anupalan Karta (अनुपालंकर्ता) | Unified Compliance Self-Check Tool | ANK Tech Solutions</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
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ scroll-behavior: smooth;
15
+ }
16
+
17
+ .hero-gradient {
18
+ background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
19
+ }
20
+
21
+ .compliance-card:hover {
22
+ transform: translateY(-5px);
23
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
24
+ }
25
+
26
+ .feature-icon {
27
+ transition: all 0.3s ease;
28
+ }
29
+
30
+ .feature-card:hover .feature-icon {
31
+ transform: scale(1.1);
32
+ color: #2563eb;
33
+ }
34
+
35
+ .tooltip {
36
+ position: relative;
37
+ display: inline-block;
38
+ }
39
+
40
+ .tooltip .tooltiptext {
41
+ visibility: hidden;
42
+ width: 200px;
43
+ background-color: #1e40af;
44
+ color: #fff;
45
+ text-align: center;
46
+ border-radius: 6px;
47
+ padding: 8px;
48
+ position: absolute;
49
+ z-index: 1;
50
+ bottom: 125%;
51
+ left: 50%;
52
+ margin-left: -100px;
53
+ opacity: 0;
54
+ transition: opacity 0.3s;
55
+ }
56
+
57
+ .tooltip .tooltiptext::after {
58
+ content: "";
59
+ position: absolute;
60
+ top: 100%;
61
+ left: 50%;
62
+ margin-left: -5px;
63
+ border-width: 5px;
64
+ border-style: solid;
65
+ border-color: #1e40af transparent transparent transparent;
66
+ }
67
+
68
+ .tooltip:hover .tooltiptext {
69
+ visibility: visible;
70
+ opacity: 1;
71
+ }
72
+
73
+ .animate-float {
74
+ animation: float 3s ease-in-out infinite;
75
+ }
76
+
77
+ @keyframes float {
78
+ 0% { transform: translateY(0px); }
79
+ 50% { transform: translateY(-10px); }
80
+ 100% { transform: translateY(0px); }
81
+ }
82
+ </style>
83
+ </head>
84
+ <body class="bg-gray-50">
85
+ <!-- Hero Section -->
86
+ <section class="hero-gradient text-white py-20">
87
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
88
+ <div class="text-center">
89
+ <h1 class="text-5xl font-bold mb-6">Anupalan Karta (अनुपालंकर्ता)</h1>
90
+ <h2 class="text-3xl font-semibold mb-8">Your Unified Compliance Self-Check Solution</h2>
91
+ <p class="text-xl max-w-3xl mx-auto mb-10">
92
+ Streamline your compliance verification for GDPR, EU AI Act, ISO 27001 and more with our automated assessment tool.
93
+ </p>
94
+ <div class="flex justify-center space-x-4">
95
+ <a href="mailto:[email protected]" class="bg-white text-blue-600 hover:bg-gray-100 px-8 py-3 rounded-md text-lg font-semibold transition duration-300">
96
+ Get Started
97
+ </a>
98
+ </div>
99
+ </div>
100
+ </div>
101
+ </section>
102
+
103
+ <!-- Features Section -->
104
+ <section id="features" class="py-20 bg-white">
105
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
106
+ <div class="text-center mb-16">
107
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Key Features</h2>
108
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
109
+ Anupalan Karta simplifies compliance management with powerful features
110
+ </p>
111
+ </div>
112
+
113
+ <div class="grid md:grid-cols-3 gap-8">
114
+ <div class="feature-card bg-gray-50 p-8 rounded-lg transition duration-300">
115
+ <div class="feature-icon text-blue-600 mb-6 text-4xl">
116
+ <i class="fas fa-shield-alt"></i>
117
+ </div>
118
+ <h3 class="text-xl font-semibold text-gray-900 mb-3">Automated Compliance Checks</h3>
119
+ <p class="text-gray-600">
120
+ Quickly assess your policies against major regulations with our automated verification system.
121
+ </p>
122
+ </div>
123
+
124
+ <div class="feature-card bg-gray-50 p-8 rounded-lg transition duration-300">
125
+ <div class="feature-icon text-blue-600 mb-6 text-4xl">
126
+ <i class="fas fa-file-alt"></i>
127
+ </div>
128
+ <h3 class="text-xl font-semibold text-gray-900 mb-3">Gap Analysis Reports</h3>
129
+ <p class="text-gray-600">
130
+ Get detailed reports highlighting compliance gaps and recommended actions.
131
+ </p>
132
+ </div>
133
+
134
+ <div class="feature-card bg-gray-50 p-8 rounded-lg transition duration-300">
135
+ <div class="feature-icon text-blue-600 mb-6 text-4xl">
136
+ <i class="fas fa-sync-alt"></i>
137
+ </div>
138
+ <h3 class="text-xl font-semibold text-gray-900 mb-3">Continuous Monitoring</h3>
139
+ <p class="text-gray-600">
140
+ Stay updated with real-time monitoring of regulation changes and their impact.
141
+ </p>
142
+ </div>
143
+ </div>
144
+ </div>
145
+ </section>
146
+
147
+ <!-- Compliance Standards Section -->
148
+ <section id="compliance" class="py-20 bg-gray-50">
149
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
150
+ <div class="text-center mb-16">
151
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Supported Compliance Standards</h2>
152
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
153
+ Comprehensive coverage of major global and regional regulations
154
+ </p>
155
+ </div>
156
+
157
+ <div class="grid md:grid-cols-3 gap-8">
158
+ <div class="compliance-card bg-white p-8 rounded-lg shadow-md transition duration-300">
159
+ <div class="flex items-center mb-4">
160
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
161
+ <i class="fas fa-user-shield text-blue-600 text-xl"></i>
162
+ </div>
163
+ <h3 class="text-xl font-semibold text-gray-900">GDPR</h3>
164
+ </div>
165
+ <p class="text-gray-600">
166
+ General Data Protection Regulation (EU) covering data privacy and protection requirements.
167
+ </p>
168
+ <ul class="mt-4 space-y-2 text-gray-600">
169
+ <li class="flex items-start">
170
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
171
+ <span>Data Subject Rights</span>
172
+ </li>
173
+ <li class="flex items-start">
174
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
175
+ <span>Data Protection Impact Assessments</span>
176
+ </li>
177
+ <li class="flex items-start">
178
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
179
+ <span>Breach Notification Requirements</span>
180
+ </li>
181
+ </ul>
182
+ </div>
183
+
184
+ <div class="compliance-card bg-white p-8 rounded-lg shadow-md transition duration-300">
185
+ <div class="flex items-center mb-4">
186
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
187
+ <i class="fas fa-robot text-blue-600 text-xl"></i>
188
+ </div>
189
+ <h3 class="text-xl font-semibold text-gray-900">EU AI Act</h3>
190
+ </div>
191
+ <p class="text-gray-600">
192
+ European Union's Artificial Intelligence regulation framework for trustworthy AI.
193
+ </p>
194
+ <ul class="mt-4 space-y-2 text-gray-600">
195
+ <li class="flex items-start">
196
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
197
+ <span>Risk Classification System</span>
198
+ </li>
199
+ <li class="flex items-start">
200
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
201
+ <span>Transparency Requirements</span>
202
+ </li>
203
+ <li class="flex items-start">
204
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
205
+ <span>Human Oversight Mandates</span>
206
+ </li>
207
+ </ul>
208
+ </div>
209
+
210
+ <div class="compliance-card bg-white p-8 rounded-lg shadow-md transition duration-300">
211
+ <div class="flex items-center mb-4">
212
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
213
+ <i class="fas fa-lock text-blue-600 text-xl"></i>
214
+ </div>
215
+ <h3 class="text-xl font-semibold text-gray-900">ISO 27001</h3>
216
+ </div>
217
+ <p class="text-gray-600">
218
+ International standard for information security management systems.
219
+ </p>
220
+ <ul class="mt-4 space-y-2 text-gray-600">
221
+ <li class="flex items-start">
222
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
223
+ <span>Information Security Policies</span>
224
+ </li>
225
+ <li class="flex items-start">
226
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
227
+ <span>Risk Assessment Processes</span>
228
+ </li>
229
+ <li class="flex items-start">
230
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
231
+ <span>Continuous Improvement Framework</span>
232
+ </li>
233
+ </ul>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ </section>
238
+
239
+ <!-- Compliance Report Section -->
240
+ <section id="report" class="py-20 bg-white">
241
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
242
+ <div class="text-center mb-16">
243
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Compliance Check Report</h2>
244
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
245
+ Get instant, comprehensive compliance reports with actionable insights
246
+ </p>
247
+ </div>
248
+
249
+ <div class="bg-gray-50 rounded-lg p-8 shadow-md">
250
+ <div class="grid md:grid-cols-2 gap-8">
251
+ <div>
252
+ <h3 class="text-xl font-semibold text-gray-900 mb-4">Report Features</h3>
253
+ <ul class="space-y-4">
254
+ <li class="flex items-start">
255
+ <div class="bg-blue-100 p-2 rounded-full mr-4">
256
+ <i class="fas fa-check-circle text-blue-600"></i>
257
+ </div>
258
+ <div>
259
+ <h4 class="font-medium text-gray-900">Automated Scoring</h4>
260
+ <p class="text-gray-600 mt-1">Compliance health score across all standards</p>
261
+ </div>
262
+ </li>
263
+ <li class="flex items-start">
264
+ <div class="bg-blue-100 p-2 rounded-full mr-4">
265
+ <i class="fas fa-check-circle text-blue-600"></i>
266
+ </div>
267
+ <div>
268
+ <h4 class="font-medium text-gray-900">Gap Analysis</h4>
269
+ <p class="text-gray-600 mt-1">Detailed breakdown of compliance gaps</p>
270
+ </div>
271
+ </li>
272
+ <li class="flex items-start">
273
+ <div class="bg-blue-100 p-2 rounded-full mr-4">
274
+ <i class="fas fa-check-circle text-blue-600"></i>
275
+ </div>
276
+ <div>
277
+ <h4 class="font-medium text-gray-900">Remediation Plan</h4>
278
+ <p class="text-gray-600 mt-1">Step-by-step action items to achieve compliance</p>
279
+ </div>
280
+ </li>
281
+ </ul>
282
+ </div>
283
+ <div>
284
+ <div class="border-2 border-dashed border-gray-300 rounded-lg p-6 text-center">
285
+ <i class="fas fa-file-pdf text-5xl text-blue-600 mb-4"></i>
286
+ <h4 class="text-lg font-medium text-gray-900 mb-2">Sample Report Preview</h4>
287
+ <p class="text-gray-600 mb-4">See what your compliance report will look like</p>
288
+ <button onclick="generateSampleReport()" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md font-medium transition duration-300">
289
+ Generate Sample Report
290
+ </button>
291
+ </div>
292
+ </div>
293
+ </div>
294
+ </div>
295
+ </div>
296
+ </section>
297
+
298
+ <!-- Benefits Section -->
299
+ <section id="benefits" class="py-20 bg-white">
300
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
301
+ <div class="text-center mb-16">
302
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Business Benefits</h2>
303
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
304
+ How Anupalan Karta helps your organization achieve compliance excellence
305
+ </p>
306
+ </div>
307
+
308
+ <div class="grid md:grid-cols-2 gap-12">
309
+ <div class="flex">
310
+ <div class="mr-6">
311
+ <div class="bg-blue-100 p-3 rounded-full">
312
+ <i class="fas fa-clock text-blue-600 text-xl"></i>
313
+ </div>
314
+ </div>
315
+ <div>
316
+ <h3 class="text-xl font-semibold text-gray-900 mb-3">Time Savings</h3>
317
+ <p class="text-gray-600">
318
+ Reduce manual compliance review time by up to 80% with automated assessments and reporting.
319
+ </p>
320
+ </div>
321
+ </div>
322
+
323
+ <div class="flex">
324
+ <div class="mr-6">
325
+ <div class="bg-blue-100 p-3 rounded-full">
326
+ <i class="fas fa-money-bill-wave text-blue-600 text-xl"></i>
327
+ </div>
328
+ </div>
329
+ <div>
330
+ <h3 class="text-xl font-semibold text-gray-900 mb-3">Cost Reduction</h3>
331
+ <p class="text-gray-600">
332
+ Minimize expensive consultant fees and internal resource allocation for compliance activities.
333
+ </p>
334
+ </div>
335
+ </div>
336
+
337
+ <div class="flex">
338
+ <div class="mr-6">
339
+ <div class="bg-blue-100 p-3 rounded-full">
340
+ <i class="fas fa-chart-line text-blue-600 text-xl"></i>
341
+ </div>
342
+ </div>
343
+ <div>
344
+ <h3 class="text-xl font-semibold text-gray-900 mb-3">Risk Mitigation</h3>
345
+ <p class="text-gray-600">
346
+ Proactively identify and address compliance gaps before they become regulatory issues.
347
+ </p>
348
+ </div>
349
+ </div>
350
+
351
+ <div class="flex">
352
+ <div class="mr-6">
353
+ <div class="bg-blue-100 p-3 rounded-full">
354
+ <i class="fas fa-trophy text-blue-600 text-xl"></i>
355
+ </div>
356
+ </div>
357
+ <div>
358
+ <h3 class="text-xl font-semibold text-gray-900 mb-3">Competitive Advantage</h3>
359
+ <p class="text-gray-600">
360
+ Demonstrate compliance maturity to customers and partners as a business differentiator.
361
+ </p>
362
+ </div>
363
+ </div>
364
+ </div>
365
+ </div>
366
+ </section>
367
+
368
+ <!-- CTA Section -->
369
+ <section class="py-20 bg-blue-600 text-white">
370
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
371
+ <h2 class="text-3xl font-bold mb-6">Ready to Simplify Your Compliance?</h2>
372
+ <p class="text-xl mb-8 max-w-3xl mx-auto">
373
+ Contact us today to learn how Anupalan Karta can help your organization achieve and maintain compliance effortlessly.
374
+ </p>
375
+ <a href="mailto:[email protected]" class="bg-white text-blue-600 hover:bg-gray-100 px-8 py-3 rounded-md text-lg font-semibold transition duration-300 inline-block">
376
+ Get Started Now
377
+ </a>
378
+ </div>
379
+ </section>
380
+
381
+ <!-- Navigation -->
382
+ <nav class="bg-white shadow-md fixed w-full z-10">
383
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
384
+ <div class="flex justify-between h-16">
385
+ <div class="flex items-center">
386
+ <div class="flex-shrink-0 flex items-center">
387
+ <img class="h-8 w-auto" src="https://anktechsol.com/wp-content/uploads/2023/04/cropped-ANK-Tech-Solutions-Logo-32x32.png" alt="ANK Tech Solutions">
388
+ <span class="ml-2 text-xl font-bold text-gray-900">Anupalan Karta</span>
389
+ </div>
390
+ </div>
391
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
392
+ <a href="#features" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Features</a>
393
+ <a href="#compliance" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Supported Standards</a>
394
+ <a href="#benefits" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Benefits</a>
395
+ <a href="#report" class="text-gray-900 hover:text-blue-600 px-3 py-2 text-sm font-medium">Reports</a>
396
+ <a href="mailto:[email protected]" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium">Request Demo</a>
397
+ </div>
398
+ <div class="-mr-2 flex items-center md:hidden">
399
+ <button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500">
400
+ <span class="sr-only">Open main menu</span>
401
+ <i class="fas fa-bars"></i>
402
+ </button>
403
+ </div>
404
+ </div>
405
+ </div>
406
+
407
+ <!-- Mobile menu -->
408
+ <div class="hidden md:hidden" id="mobile-menu">
409
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3 bg-white shadow-lg">
410
+ <a href="#features" class="text-gray-900 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Features</a>
411
+ <a href="#compliance" class="text-gray-900 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Supported Standards</a>
412
+ <a href="#benefits" class="text-gray-900 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Benefits</a>
413
+ <a href="#report" class="text-gray-900 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Reports</a>
414
+ <a href="mailto:[email protected]" class="bg-blue-600 hover:bg-blue-700 text-white block px-3 py-2 rounded-md text-base font-medium mt-2">Request Demo</a>
415
+ <script>
416
+ function generateSampleReport() {
417
+ alert("Sample report generation initiated! A PDF report will be downloaded shortly.");
418
+ // In a real implementation, this would generate and download a PDF report
419
+ // For now, we'll just show an alert to demonstrate the click action
420
+ }
421
+ </script>
422
+ <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=anktechsol/anupalan-karta" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
423
+ </html>