Files
developer-roadmap/components/featured-content/index.js

93 lines
3.8 KiB
JavaScript
Raw Normal View History

2019-09-07 15:26:35 +04:00
import './style.scss';
2019-09-07 18:45:27 +04:00
const FeaturedContent = (props) => (
2019-09-07 18:16:23 +04:00
<>
2019-09-07 18:45:27 +04:00
<div className="featured-content-wrap">
2019-09-07 18:16:23 +04:00
<div className="container">
2019-09-07 18:45:27 +04:00
<div className="featured-head">
2019-09-07 18:16:23 +04:00
<h3>Featured Content</h3>
2019-09-07 18:45:27 +04:00
<p className="border-through featured-separator">
2019-09-07 18:54:25 +04:00
<span>
List of roadmaps mostly visited by the community&nbsp;
<a href="#" className="dark-link d-none d-sm-none d-md-inline d-xl-inline">View all Roadmaps</a>
</span>
2019-09-07 18:45:27 +04:00
</p>
2019-09-07 18:16:23 +04:00
</div>
<div className="swim-lane row">
<div className="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12 grid-item-container">
2019-09-07 18:45:27 +04:00
<a className="featured-block" href='#'>
2019-09-07 18:16:23 +04:00
<h4>Frontend Developer</h4>
<p>Step by step guide to becoming a modern frontend developer in 2019</p>
</a>
</div>
<div className="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12 grid-item-container">
2019-09-07 18:45:27 +04:00
<a className="featured-block" href='#'>
2019-09-07 18:16:23 +04:00
<h4>Backend Developer</h4>
<p>Step by step guide to becoming a modern backend developer in 2019</p>
</a>
</div>
<div className="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12 grid-item-container">
2019-09-07 18:45:27 +04:00
<a className="featured-block" href='#'>
2019-09-07 18:16:23 +04:00
<h4>DevOps Roadmap</h4>
<p>Step by step guide to become an SRE or for any operations role in 2019</p>
</a>
</div>
</div>
2019-09-07 16:24:48 +04:00
</div>
2019-09-07 18:16:23 +04:00
</div>
2019-09-07 18:45:27 +04:00
<div className="featured-content-wrap">
2019-09-07 18:16:23 +04:00
<div className="container">
2019-09-07 18:54:25 +04:00
<p className='border-through featured-separator'>
<span>
List of most visited guides&nbsp;
<a href="#" className="dark-link d-none d-sm-none d-md-inline d-xl-inline">View all Guides</a>
</span>
</p>
2019-09-07 18:16:23 +04:00
<div className="swim-lane row">
<div className="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12 grid-item-container">
2019-09-07 18:45:27 +04:00
<a className="featured-block" href='#'>
2019-09-07 18:16:23 +04:00
<h4>Design Patterns for Humans</h4>
<p>A language agnostic, ultra-simplified explanation to design patterns</p>
</a>
</div>
<div className="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12 grid-item-container">
2019-09-07 18:45:27 +04:00
<a className="featured-block" href='#'>
2019-09-07 18:16:23 +04:00
<h4>Learn Regex</h4>
<p>An easy to understand guide on regular expressions with real world examples</p>
</a>
</div>
<div className="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12 grid-item-container">
2019-09-07 18:45:27 +04:00
<a className="featured-block" href='#'>
2019-09-07 18:16:23 +04:00
<h4>Bash Guide</h4>
<p>Easy to understand guide for bash with real world usage examples.</p>
</a>
</div>
<div className="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12 grid-item-container">
2019-09-07 18:45:27 +04:00
<a className="featured-block" href='#'>
2019-09-07 18:16:23 +04:00
<h4>DNS in One Picture</h4>
<p>Quick illustrative guide on how a website is found on the internet.</p>
</a>
</div>
<div className="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12 grid-item-container">
2019-09-07 18:45:27 +04:00
<a className="featured-block" href='#'>
2019-09-07 18:16:23 +04:00
<h4>Using React Hooks</h4>
<p>Start using React hooks in your react applications today with this guide.</p>
</a>
</div>
2019-09-07 18:45:27 +04:00
<div className="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12 grid-item-container">
<a className="featured-block" href='#'>
<h4>HTTP Caching</h4>
<p>Everything you need to know about web caching</p>
</a>
</div>
2019-09-07 18:16:23 +04:00
</div>
2019-09-07 16:24:48 +04:00
</div>
2019-09-07 15:56:04 +04:00
</div>
2019-09-07 18:16:23 +04:00
</>
2019-09-07 15:26:35 +04:00
);
2019-09-07 18:45:27 +04:00
FeaturedContent.defaultProps = {
2019-09-07 15:26:35 +04:00
className: '',
};
2019-09-07 18:45:27 +04:00
export default FeaturedContent;