Update footer URLs and contribution docs
This commit is contained in:
@ -10,4 +10,4 @@ const HeroSection = () => (
|
|||||||
</HeroSectionWrap>
|
</HeroSectionWrap>
|
||||||
);
|
);
|
||||||
|
|
||||||
export default HeroSection;
|
export default HeroSection;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
|
import siteConfig from "data/site";
|
||||||
import { FooterWrap } from './style.js'
|
import { FooterWrap } from './style.js'
|
||||||
|
|
||||||
const PageFooter = () => (
|
const PageFooter = () => (
|
||||||
@ -26,28 +27,28 @@ const PageFooter = () => (
|
|||||||
<div className="site-contribute foot-col col-12 col-sm-4 col-lg-2">
|
<div className="site-contribute foot-col col-12 col-sm-4 col-lg-2">
|
||||||
<ul>
|
<ul>
|
||||||
<li className='foot-header'>Contribute</li>
|
<li className='foot-header'>Contribute</li>
|
||||||
<li><a href="#">Write an Article</a></li>
|
<li><a href={ siteConfig.url.addGuide } target="_blank">Write an Article</a></li>
|
||||||
<li><a href="#">Submit a Roadmap</a></li>
|
<li><a href={ siteConfig.url.addRoadmap } target="_blank">Submit a Roadmap</a></li>
|
||||||
<li><a href="#">Add resources</a></li>
|
<li><a href={ siteConfig.url.addResources } target="_blank">Add resources</a></li>
|
||||||
<li><a href="#">Codebase</a></li>
|
<li><a href={ siteConfig.url.repo } target="_blank">Codebase</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div className="site-learn foot-col col-12 col-sm-4 col-lg-2">
|
<div className="site-learn foot-col col-12 col-sm-4 col-lg-2">
|
||||||
<ul>
|
<ul>
|
||||||
<li className="foot-header">Learn</li>
|
<li className="foot-header">Learn</li>
|
||||||
<li><a href="#">Read Articles</a></li>
|
<li><a href="/guides">Read Guides</a></li>
|
||||||
<li><a href="#">Follow Roadmap</a></li>
|
<li><a href="/roadmaps">Follow Roadmap</a></li>
|
||||||
<li><a href="#">Review Projects</a></li>
|
<li><a href="#">Review Projects</a></li>
|
||||||
<li><a href="#">Contribute</a></li>
|
<li><a href={ siteConfig.url.contribute } target="_blank">Contribute</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div className="site-learn foot-col col-12 col-sm-4 col-lg-2">
|
<div className="site-learn foot-col col-12 col-sm-4 col-lg-2">
|
||||||
<ul>
|
<ul>
|
||||||
<li className="foot-header">Most Visited</li>
|
<li className="foot-header">Most Visited</li>
|
||||||
<li><a href="#">Frontend Roadmap</a></li>
|
<li><a href="/frontend">Frontend Roadmap</a></li>
|
||||||
<li><a href="#">Backend Roadmap</a></li>
|
<li><a href="/backend">Backend Roadmap</a></li>
|
||||||
<li><a href="#">DevOps Roadmap</a></li>
|
<li><a href="/devops">DevOps Roadmap</a></li>
|
||||||
<li><a href="#">One for All</a></li>
|
<li><a href="/roadmaps">Upcoming</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
1
contributing/readme.md
Normal file
1
contributing/readme.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
## Contribute
|
0
contributing/resources.md
Normal file
0
contributing/resources.md
Normal file
@ -12,6 +12,8 @@
|
|||||||
"repoData": "https://github.com/kamranahmedse/roadmap-next/tree/master/data",
|
"repoData": "https://github.com/kamranahmedse/roadmap-next/tree/master/data",
|
||||||
"addGuide": "https://github.com/kamranahmedse/roadmap-next/tree/master/contributing/guide.md",
|
"addGuide": "https://github.com/kamranahmedse/roadmap-next/tree/master/contributing/guide.md",
|
||||||
"addRoadmap": "https://github.com/kamranahmedse/roadmap-next/tree/master/contributing/roadmap.md",
|
"addRoadmap": "https://github.com/kamranahmedse/roadmap-next/tree/master/contributing/roadmap.md",
|
||||||
|
"addResources": "https://github.com/kamranahmedse/roadmap-next/tree/master/contributing/resources.md",
|
||||||
|
"contribute": "https://github.com/kamranahmedse/roadmap-next/tree/master/contributing",
|
||||||
"issue": "https://github.com/kamranahmedse/roadmap-next/issues/new"
|
"issue": "https://github.com/kamranahmedse/roadmap-next/issues/new"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
Reference in New Issue
Block a user