Skip to content

Commit 817e211

Browse files
committed
adding the appropiate comments for the changes
1 parent 52173f4 commit 817e211

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/pages/ebooks/index.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ interface Ebook {
1111
category: string;
1212
}
1313

14-
// Sample Ebook Data
14+
// Redirection URL Ebook Data
1515
const ebooks: Ebook[] = [
1616
{
1717
id: '1',
@@ -21,6 +21,17 @@ const ebooks: Ebook[] = [
2121
category: 'Programming',
2222
},
2323

24+
// add here more ebooks or resources as needed for redirection
25+
// sample
26+
/*
27+
{
28+
id: '2',
29+
title: 'Understanding React Hooks',
30+
description: 'A deep dive into React Hooks for better state management.',
31+
contentLink: 'https://learn.recodehive.com/react-hooks',
32+
category: 'Web Development',
33+
},
34+
*/
2435
];
2536

2637
// --------------------------

0 commit comments

Comments
 (0)