Skip to content

Commit

Permalink
Merge pull request #11 from brendancboyle/dev
Browse files Browse the repository at this point in the history
1.0.5
  • Loading branch information
bcbee authored Feb 14, 2018
2 parents 518f123 + c98f6b2 commit 6ad828d
Show file tree
Hide file tree
Showing 7 changed files with 88 additions and 3 deletions.
30 changes: 30 additions & 0 deletions app/components/Present.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,33 @@
margin: 8px;
text-align: center;
}

.container h2 {
margin-top: 25px;
}

.statusContainer {
width: 200px;
margin: auto;
}

.statusContainer img {
width: 100%;
}

.slide {
width: 200px;
position: absolute;
}

.slide div {
width: 130px;
background: white;
border-radius: 5px;
height: 72px;
margin: 45px auto 0 auto;
}

.slide img {
width: 70px;
}
13 changes: 12 additions & 1 deletion app/components/Present.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import React, { Component } from 'react';
import styles from './Present.css';
import NavBar from '../containers/NavBar';
import UPRKit from '../UPRKit';
import Display from '../images/display.svg';
import Check from '../images/check.svg';

type Props = {
token: string,
Expand All @@ -18,7 +20,16 @@ export default class Home extends Component<Props> {
<div>
<NavBar title="Present" />
<div className={styles.container} data-tid="container">
<h2>Universal Presenter Remote</h2>
<h2>Ready to Go</h2>
<h3>Open your presentation and use the app as a remote</h3>
<div className={styles.statusContainer}>
<div className={styles.slide}>
<div>
<img src={Check} alt="computer" />
</div>
</div>
<img src={Display} alt="computer" />
</div>
</div>
</div>
);
Expand Down
14 changes: 14 additions & 0 deletions app/images/check.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions app/images/display.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions app/images/play-button.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "upr-desktop",
"productName": "Universal Presenter Remote",
"version": "1.0.4",
"version": "1.0.5",
"description": "Control your presentations from any platform.",
"main": "./main.prod.js",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "upr-desktop",
"productName": "Universal Presenter Remote",
"version": "1.0.4",
"version": "1.0.5",
"description": "Control your presentations from any platform.",
"scripts": {
"build": "concurrently \"npm run build-main\" \"npm run build-renderer\"",
Expand Down

0 comments on commit 6ad828d

Please sign in to comment.