We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52173f4 commit 817e211Copy full SHA for 817e211
src/pages/ebooks/index.tsx
@@ -11,7 +11,7 @@ interface Ebook {
11
category: string;
12
}
13
14
-// Sample Ebook Data
+// Redirection URL Ebook Data
15
const ebooks: Ebook[] = [
16
{
17
id: '1',
@@ -21,6 +21,17 @@ const ebooks: Ebook[] = [
21
category: 'Programming',
22
},
23
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
+ */
35
];
36
37
// --------------------------
0 commit comments