Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.5 KiB

5 years ago
import Link from 'next/link';
import siteConfig from "storage/site";
import { FooterWrap } from './style.js'
5 years ago
const PageFooter = () => (
<FooterWrap className="border-top">
<div className="container">
5 years ago
<div className="foot-cols-wrap row">
<div className="site-meta-wrap col-12 col-sm-12 col-lg col-xl col-md-12">
<div className="site-meta">
<div className="brand-detail">
<a href="/" className='brand'><img src="/brand.png" alt="" /> roadmap.sh</a>
5 years ago
<span className="preposition">by</span>
5 years ago
<a href="https://twitter.com/kamranahmedse" target="_blank" className='follow-author'>@kamranahmedse</a>
5 years ago
</div>
<div className="brand-explanation">
<p>Community created roadmaps, articles, resources and journeys to help you choose your path and grow in your career.</p>
</div>
<p className='meta-links'>
&copy; roadmap.sh &middot;
5 years ago
&nbsp; <a href="/about">FAQ</a> &middot;
5 years ago
&nbsp; <a href="/terms">Terms</a> &middot;
5 years ago
&nbsp; <a href="/privacy">Privacy</a>
5 years ago
</p>
</div>
</div>
<div className="site-contribute foot-col col-12 col-sm-4 col-lg-2">
5 years ago
<ul>
<li className='foot-header'>Contribute</li>
5 years ago
<li><a href={ siteConfig.url.addGuide } target="_blank">Write a Guide</a></li>
<li><a href={ siteConfig.url.addRoadmap } target="_blank">Submit a Roadmap</a></li>
<li><a href={ siteConfig.url.addResources } target="_blank">Add resources</a></li>
<li><a href={ siteConfig.url.repo } target="_blank">Codebase</a></li>
5 years ago
</ul>
</div>
<div className="site-learn foot-col col-12 col-sm-4 col-lg-2">
5 years ago
<ul>
<li className="foot-header">Learn</li>
<li><a href="/guides">Read Guides</a></li>
5 years ago
<li><a href="/roadmaps">View Roadmaps</a></li>
<li><a href={ siteConfig.url.contribute } target="_blank">Contribute</a></li>
5 years ago
</ul>
</div>
<div className="site-learn foot-col col-12 col-sm-4 col-lg-2">
5 years ago
<ul>
<li className="foot-header">Most Visited</li>
<li><a href="/frontend">Frontend Roadmap</a></li>
<li><a href="/backend">Backend Roadmap</a></li>
<li><a href="/devops">DevOps Roadmap</a></li>
<li><a href="/roadmaps">Upcoming</a></li>
5 years ago
</ul>
</div>
</div>
</div>
</FooterWrap>
);
5 years ago
export default PageFooter;