Skip to content

Commit e04757e

Browse files
committed
Add prominent links to SEBI CSCRF Implementation Guide
1 parent f6bf7c3 commit e04757e

File tree

1 file changed

+40
-3
lines changed

1 file changed

+40
-3
lines changed

src/app/page.tsx

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,14 @@ export default function Home() {
201201

202202
<div className="mt-4 flex justify-center">
203203
<a
204-
href="/sebi-cscrf"
205-
className="text-white hover:text-gray-200 underline transition-colors"
204+
href="https://dakshinrajsiva.github.io/cci/sebi-cscrf"
205+
className="bg-white text-black hover:bg-gray-200 py-2 px-6 rounded-md transition duration-200 font-bold flex items-center shadow-md"
206+
target="_blank"
207+
rel="noopener noreferrer"
206208
>
209+
<svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5 mr-2" viewBox="0 0 20 20" fill="currentColor">
210+
<path d="M9 4.804A7.968 7.968 0 005.5 4c-1.255 0-2.443.29-3.5.804v10A7.969 7.969 0 015.5 14c1.669 0 3.218.51 4.5 1.385A7.962 7.962 0 0114.5 14c1.255 0 2.443.29 3.5.804v-10A7.968 7.968 0 0014.5 4c-1.255 0-2.443.29-3.5.804V12a1 1 0 11-2 0V4.804z" />
211+
</svg>
207212
View SEBI CSCRF Implementation Guide
208213
</a>
209214
</div>
@@ -248,8 +253,19 @@ export default function Home() {
248253
<svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5 mr-2" viewBox="0 0 20 20" fill="currentColor">
249254
<path fillRule="evenodd" d="M10 3a1 1 0 011 1v5h5a1 1 0 110 2h-5v5a1 1 0 11-2 0v-5H4a1 1 0 110-2h5V4a1 1 0 011-1z" clipRule="evenodd" />
250255
</svg>
251-
Detailed Data Collection
256+
Detailed Assessment
252257
</button>
258+
<a
259+
href="https://dakshinrajsiva.github.io/cci/sebi-cscrf"
260+
className="bg-gray-600 hover:bg-gray-700 text-white py-2 px-6 rounded-md transition duration-200 shadow-md flex items-center"
261+
target="_blank"
262+
rel="noopener noreferrer"
263+
>
264+
<svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5 mr-2" viewBox="0 0 20 20" fill="currentColor">
265+
<path d="M9 4.804A7.968 7.968 0 005.5 4c-1.255 0-2.443.29-3.5.804v10A7.969 7.969 0 015.5 14c1.669 0 3.218.51 4.5 1.385A7.962 7.962 0 0114.5 14c1.255 0 2.443.29 3.5.804v-10A7.968 7.968 0 0014.5 4c-1.255 0-2.443.29-3.5.804V12a1 1 0 11-2 0V4.804z" />
266+
</svg>
267+
Implementation Guide
268+
</a>
253269
<button
254270
onClick={handleReset}
255271
className="bg-gray-600 hover:bg-gray-700 text-white py-2 px-6 rounded-md transition duration-200 shadow-md flex items-center"
@@ -382,6 +398,27 @@ export default function Home() {
382398
<CCIReport parameters={parameters} result={cciResult} />
383399
</div>
384400
)}
401+
402+
{/* Bottom Call-to-Action for Implementation Guide */}
403+
<div className="bg-blue-900 text-white p-6 rounded-xl shadow-lg mb-8 flex flex-col md:flex-row items-center justify-between">
404+
<div className="mb-4 md:mb-0">
405+
<h2 className="text-xl font-bold">Need guidance for SEBI CSCRF implementation?</h2>
406+
<p className="text-blue-200 mt-2">
407+
Our comprehensive guide provides detailed requirements and evidence examples for each parameter
408+
</p>
409+
</div>
410+
<a
411+
href="https://dakshinrajsiva.github.io/cci/sebi-cscrf"
412+
className="bg-white text-blue-900 hover:bg-blue-100 py-3 px-8 rounded-md transition duration-200 font-bold flex items-center shadow-md"
413+
target="_blank"
414+
rel="noopener noreferrer"
415+
>
416+
<svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5 mr-2" viewBox="0 0 20 20" fill="currentColor">
417+
<path d="M9 4.804A7.968 7.968 0 005.5 4c-1.255 0-2.443.29-3.5.804v10A7.969 7.969 0 015.5 14c1.669 0 3.218.51 4.5 1.385A7.962 7.962 0 0114.5 14c1.255 0 2.443.29 3.5.804v-10A7.968 7.968 0 0014.5 4c-1.255 0-2.443.29-3.5.804V12a1 1 0 11-2 0V4.804z" />
418+
</svg>
419+
View Implementation Guide
420+
</a>
421+
</div>
385422
</div>
386423
);
387424
}

0 commit comments

Comments
 (0)