Skip to content

Commit a86ba8e

Browse files
committed
mv dev learning paths to dApp development
1 parent a328298 commit a86ba8e

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

pages/build/_meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"index": "Home",
23
"-- Setup & Installation": {
34
"type": "separator",
45
"title": "Setup and Installation"

pages/build/index.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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+
}

pages/onboard/index.mdx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ import React, { useRef } from 'react';
22
import DeveloperSurveyCallout from '../../components/DeveloperSurveyCallout/DeveloperSurveyCallout';
33
import SeiIntro from '../../components/Homepage/SeiIntro';
44
import DocCardsGrid from '../../components/DocCard/DocCardsGrid';
5-
import LearningPathContainer from '../../components/Homepage/LearningPathContainer';
65
import { docsData } from '../../data/docsData';
7-
import { guidesData } from '../../data/guidesData';
86

97
export default function HomePage() {
108
const docsRef = useRef(null);
@@ -22,9 +20,6 @@ export default function HomePage() {
2220
</div>
2321
<br />
2422
<div className="border-t border-gray-700 my-8"></div>
25-
26-
{/* Add seamless learning path container */}
27-
<LearningPathContainer data={guidesData} />
2823
</>
2924
);
3025
}

0 commit comments

Comments
 (0)