Skip to content

Commit f6a916c

Browse files
Sean PrashadSean Prashad
authored andcommitted
Add placeholder text
1 parent 09a6dd3 commit f6a916c

File tree

4 files changed

+13
-50
lines changed

4 files changed

+13
-50
lines changed

web/src/components/App.css

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,5 @@
11
.App {
2-
text-align: center;
3-
}
4-
5-
.App-logo {
6-
height: 40vmin;
7-
pointer-events: none;
8-
}
9-
10-
@media (prefers-reduced-motion: no-preference) {
11-
.App-logo {
12-
animation: App-logo-spin infinite 20s linear;
13-
}
14-
}
15-
16-
.App-header {
17-
background-color: #282c34;
18-
min-height: 100vh;
192
display: flex;
20-
flex-direction: column;
213
align-items: center;
224
justify-content: center;
23-
font-size: calc(10px + 2vmin);
24-
color: white;
25-
}
26-
27-
.App-link {
28-
color: #61dafb;
29-
}
30-
31-
@keyframes App-logo-spin {
32-
from {
33-
transform: rotate(0deg);
34-
}
35-
to {
36-
transform: rotate(360deg);
37-
}
385
}

web/src/components/App.js

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
import React from 'react';
2-
import logo from './logo.svg';
2+
import { Container, Row, Col } from 'reactstrap';
3+
34
import './App.css';
45

56
function App() {
67
return (
78
<div className="App">
8-
<header className="App-header">
9-
<img src={logo} className="App-logo" alt="logo" />
10-
<p>
11-
Edit <code>src/App.js</code> and save to reload.
12-
</p>
13-
<a
14-
className="App-link"
15-
href="https://reactjs.org"
16-
target="_blank"
17-
rel="noopener noreferrer"
18-
>
19-
Learn React
20-
</a>
21-
</header>
9+
<Container fluid>
10+
<Col>
11+
<Row>
12+
<header>
13+
<p>Coming soon to a theatre near you!</p>
14+
</header>
15+
</Row>
16+
</Col>
17+
</Container>
2218
</div>
2319
);
2420
}

web/src/index.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ body {
44
margin: 0;
55
font-family: 'Open Sans', sans-serif;
66
-webkit-font-smoothing: antialiased !important;
7-
-moz-osx-font-smoothing: grayscale;
87
}

web/src/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from 'react';
22
import ReactDOM from 'react-dom';
3-
import './index.css';
3+
44
import App from './components/App';
5+
import './index.css';
56

67
ReactDOM.render(<App />, document.getElementById('root'));

0 commit comments

Comments
 (0)