File size: 2,358 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
import React from "react";
import CardComponent from "./CardComponent";
const listings = [
{
id: 1,
mainTitle: "Go/JS/PHP Software engineer looking for new opportunities",
subText: "forHire",
},
{
id: 2,
mainTitle: "Live-Coding on YouTube continues tomorrow",
subText: "events",
},
{
id: 3,
mainTitle: "Product Designer",
subText: "jobs",
},
{
id: 4,
mainTitle: "FREE COURSE, this weekend only: Ship better code faster",
subText: "education",
},
{
id: 5,
mainTitle: "MEAN / MERN Stack 100+ Learning Resources {FREE}",
subText: "misc",
},
];
const news = [
{
id: 1,
mainTitle: "Game Dev Digest — Issue #83 - How and Why",
newarticle: true,
},
{
id: 2,
mainTitle: "JavaScript News and Updates of February 2021",
newarticle: true,
},
{
id: 3,
mainTitle: "🗞 What's new and special in Create Go App CLI v1.7.0?",
newarticle: true,
},
{
id: 4,
mainTitle:
"Google’s Termination of Dr. Mitchell, Clubhouse Security, Low-Code Tools, & more on DevNews!",
subText: "1 comment",
newarticle: false,
},
{
id: 5,
mainTitle: "Ember 3.25 Released",
newarticle: true,
},
];
const help = [
{
id: 1,
mainTitle: "How to start a programming blog?",
newarticle: true,
},
{
id: 2,
mainTitle: "How to use @yarnpkg/core?",
subText: "2 comments",
newarticle: false,
},
{
id: 3,
mainTitle: "Need advice regarding web development",
subText: "5 comments",
newarticle: false,
},
];
const RightSidebar = () => {
return (
<aside className="rightBar">
<div className="rightBar__card-hackathon">
<p>
<img src="https://picsum.photos/200/300" alt="" />
</p>
<h2>
<a href="/#">"Hack the Planet" with New Relic & DEV</a>
</h2>
<p>
Use New Relic to build a climate-change observability app for the
chance to win up to $5,000!
<strong>
<a href="/#"> join the hackathon</a>
</strong>
</p>
</div>
<CardComponent tag="Listings" articles={listings} />
<CardComponent tag="#news" articles={news} />
<CardComponent tag="#help" articles={help} />
</aside>
);
};
export default RightSidebar;
|