File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
+ "index" : " Home" ,
2
3
"-- Setup & Installation" : {
3
4
"type" : " separator" ,
4
5
"title" : " Setup and Installation"
Original file line number Diff line number Diff line change
1
+ import React from ' react' ;
2
+ import LearningPathContainer from ' ../../components/Homepage/LearningPathContainer' ;
3
+ import { guidesData } from ' ../../data/guidesData' ;
4
+
5
+ export default function HomePage() {
6
+ return (
7
+ <div className = " bg-dark" >
8
+ <LearningPathContainer data = { guidesData } />
9
+ </div >
10
+ );
11
+ }
Original file line number Diff line number Diff line change @@ -2,9 +2,7 @@ import React, { useRef } from 'react';
2
2
import DeveloperSurveyCallout from ' ../../components/DeveloperSurveyCallout/DeveloperSurveyCallout' ;
3
3
import SeiIntro from ' ../../components/Homepage/SeiIntro' ;
4
4
import DocCardsGrid from ' ../../components/DocCard/DocCardsGrid' ;
5
- import LearningPathContainer from ' ../../components/Homepage/LearningPathContainer' ;
6
5
import { docsData } from ' ../../data/docsData' ;
7
- import { guidesData } from ' ../../data/guidesData' ;
8
6
9
7
export default function HomePage() {
10
8
const docsRef = useRef (null );
@@ -22,9 +20,6 @@ export default function HomePage() {
22
20
</div >
23
21
<br />
24
22
<div className = " border-t border-gray-700 my-8" ></div >
25
-
26
- { /* Add seamless learning path container */ }
27
- <LearningPathContainer data = { guidesData } />
28
23
</>
29
24
);
30
25
}
You can’t perform that action at this time.
0 commit comments