Skip to content

Commit 2cbd3d2

Browse files
committed
Black Lives Matter
1 parent 86b9a45 commit 2cbd3d2

File tree

4 files changed

+50
-0
lines changed

4 files changed

+50
-0
lines changed

app/components/Header.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,9 @@ export default class Header extends Component {
209209
Header__Home: isHomeScreen,
210210
'Header--menuOpen': isMenuOpen,
211211
})}>
212+
<div className="BlackLivesMatter__Banner">
213+
<Link to="/blm">Black Lives Matter</Link>
214+
</div>
212215
<Navigation
213216
onMenuClick={isOpen => {
214217
if (typeof isOpen === 'undefined') {

app/screens/BLM/index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import React from 'react';
2+
3+
export default () => {
4+
return (
5+
<div className="BlackLivesMatter">
6+
<section>
7+
<h1>Black Lives Matter ✊🏽✊🏾✊🏿</h1>
8+
<p>
9+
We are both heartbroken and outraged at the murder of George Floyd. Too many black lives have ended at the hands of those who are meant to serve and protect our communities. There is no place for this kind of hate or bigotry in the world. We stand in solidarity with the black community. We stand with those who are protesting for justice and police reform throughout the country. We stand with those who are oppressed for the color of their skin. We stand for racial equality. We stand with black lives because black lives matter.
10+
</p>
11+
<p>– Matt & Jamison</p>
12+
</section>
13+
</div>
14+
)
15+
};

assets/css/styles.scss

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -673,6 +673,36 @@ section.Footer__Tickets h2 {
673673
visibility: visible;
674674
}
675675

676+
/* -- Black Lives Matter -- */
677+
.BlackLivesMatter__Banner {
678+
background: #222;
679+
text-align: center;
680+
padding: 10px;
681+
}
682+
.BlackLivesMatter__Banner a {
683+
color: #ccc;
684+
}
685+
686+
.BlackLivesMatter {
687+
position: absolute;
688+
top: 0;
689+
right: 0;
690+
bottom: 0;
691+
left: 0;
692+
background: #222;
693+
color: #ccc;
694+
overflow: auto;
695+
}
696+
.BlackLivesMatter h1 {
697+
border: 0 none;
698+
color: #ccc;
699+
padding: 0;
700+
}
701+
.BlackLivesMatter section {
702+
max-width: 800px;
703+
margin: 0 auto;
704+
}
705+
676706
/* -- Icon -- */
677707
.Icon {
678708
color: $color-grayDark;

index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import ReactDOM from 'react-dom';
33
import {Router, Route, IndexRoute, browserHistory} from 'react-router';
44
import App from 'App';
55
import About from 'screens/About';
6+
import BLM from 'screens/BLM';
67
import Conduct from 'screens/Conduct';
78
import Home from 'screens/Home';
89
import Schedule from 'screens/Schedule';
@@ -56,6 +57,7 @@ ReactDOM.render(
5657
<Route path="/" component={App}>
5758
<IndexRoute component={Home} />
5859
<Route path="/about" component={About} />
60+
<Route path="/blm" component={BLM} />
5961
<Route path="/conduct" component={Conduct} />
6062
<Route path="/schedule" component={Schedule} />
6163
<Route path="/speakers" component={Speakers} />

0 commit comments

Comments
 (0)