2019-11-01 03:20:13 +04:00
|
|
|
import Link from 'next/link';
|
2020-01-18 22:47:48 +04:00
|
|
|
import siteConfig from "content/site";
|
2019-10-19 21:24:16 +04:00
|
|
|
import { FooterWrap } from './style.js'
|
2019-09-08 00:03:40 +04:00
|
|
|
|
2019-09-20 19:00:43 +04:00
|
|
|
const PageFooter = () => (
|
2019-11-02 17:50:57 +04:00
|
|
|
<FooterWrap className="border-top">
|
2019-09-08 00:03:40 +04:00
|
|
|
<div className="container">
|
2019-09-14 06:24:33 +04:00
|
|
|
<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">
|
2020-01-18 01:08:47 +04:00
|
|
|
<a href="/" className='brand'><img src="/brand.png" alt="" /> roadmap.sh</a>
|
2019-09-14 06:24:33 +04:00
|
|
|
<span className="preposition">by</span>
|
2019-11-01 20:51:32 +04:00
|
|
|
<a href="https://twitter.com/kamranahmedse" target="_blank" className='follow-author'>@kamranahmedse</a>
|
2019-09-14 06:24:33 +04:00
|
|
|
</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'>
|
|
|
|
© roadmap.sh ·
|
2019-09-15 23:45:25 +04:00
|
|
|
<a href="/about">FAQ</a> ·
|
2019-09-14 11:29:02 +04:00
|
|
|
<a href="/terms">Terms</a> ·
|
2019-09-14 14:47:16 +04:00
|
|
|
<a href="/privacy">Privacy</a>
|
2019-09-14 06:24:33 +04:00
|
|
|
</p>
|
|
|
|
</div>
|
2019-09-08 00:03:40 +04:00
|
|
|
</div>
|
2019-09-14 11:15:12 +04:00
|
|
|
<div className="site-contribute foot-col col-12 col-sm-4 col-lg-2">
|
2019-09-14 06:24:33 +04:00
|
|
|
<ul>
|
|
|
|
<li className='foot-header'>Contribute</li>
|
2019-11-13 22:35:02 +04:00
|
|
|
<li><a href={ siteConfig.url.addGuide } target="_blank">Write a Guide</a></li>
|
2019-11-13 22:05:13 +04:00
|
|
|
<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>
|
2019-09-14 06:24:33 +04:00
|
|
|
</ul>
|
|
|
|
</div>
|
2019-09-14 11:15:12 +04:00
|
|
|
<div className="site-learn foot-col col-12 col-sm-4 col-lg-2">
|
2019-09-14 06:24:33 +04:00
|
|
|
<ul>
|
|
|
|
<li className="foot-header">Learn</li>
|
2019-11-13 22:05:13 +04:00
|
|
|
<li><a href="/guides">Read Guides</a></li>
|
2019-11-13 22:35:02 +04:00
|
|
|
<li><a href="/roadmaps">View Roadmaps</a></li>
|
2019-11-13 22:05:13 +04:00
|
|
|
<li><a href={ siteConfig.url.contribute } target="_blank">Contribute</a></li>
|
2019-09-14 06:24:33 +04:00
|
|
|
</ul>
|
|
|
|
</div>
|
2019-09-14 11:15:12 +04:00
|
|
|
<div className="site-learn foot-col col-12 col-sm-4 col-lg-2">
|
2019-09-14 06:24:33 +04:00
|
|
|
<ul>
|
|
|
|
<li className="foot-header">Most Visited</li>
|
2019-11-13 22:05:13 +04:00
|
|
|
<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>
|
2019-09-14 06:24:33 +04:00
|
|
|
</ul>
|
2019-09-08 00:03:40 +04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-22 12:11:24 +04:00
|
|
|
|
|
|
|
{/* Do not show on local */}
|
|
|
|
{ process.env.GA_SECRET && (
|
|
|
|
<>
|
|
|
|
<div id="codefund"></div>
|
|
|
|
<script src="https://app.codefund.io/properties/681/funder.js" async></script>
|
|
|
|
</>
|
|
|
|
) }
|
2019-10-19 21:24:16 +04:00
|
|
|
</FooterWrap>
|
2019-09-08 00:03:40 +04:00
|
|
|
);
|
|
|
|
|
2019-11-12 21:01:23 +04:00
|
|
|
export default PageFooter;
|