Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Deis dash #12

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions containers/Auth/AboutModal.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable max-len */
import React from 'react'
import { Modal, Button } from 'react-bootstrap'
import animationGif from '../../static/animation.gif'
//import animationGif from '../../static/animation.gif'

export default (props) => (
<Modal {...props} bsSize="large" aria-labelledby="contained-modal-title-lg">
Expand All @@ -11,7 +11,7 @@ export default (props) => (
<Modal.Body>
<p className="pull-right" style={{ width: '50%' }}>
<img
src={animationGif}
src="broken.gif"
alt="deisdash animation"
width="100%"
/>
Expand Down
8 changes: 4 additions & 4 deletions containers/Auth/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import Login from './Login'
import AboutModal from './AboutModal'

// import logoImg from '../../static/deis-logo.png'
import animationGif from '../../static/animation.gif'
import deisDashLogo from '../../static/deis-dash-logo-md.png'
//import animationGif from '../../static/animation.gif'
//import deisDashLogo from '../../static/deis-dash-logo-md.png'

const modals = ['about']

Expand Down Expand Up @@ -65,7 +65,7 @@ class Auth extends Component {
<Link to="/about" className="btn btn-link">About</Link>
</div>
<div className="text-center header">
<img src={deisDashLogo} alt="deis logo" />
<img src="broken.gif" alt="deis logo" />
<span> Deis Dash</span>
<span className="version">{version}</span>
</div>
Expand All @@ -77,7 +77,7 @@ class Auth extends Component {
</div>
<div className={classnames({ 'text-center': true, hide: validController || isElectron })}>
<img
src={animationGif}
src="broken.png"
alt="deisdash animation"
width="730"
height="404"
Expand Down
4 changes: 2 additions & 2 deletions containers/Dash/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
NavDropdown,
MenuItem,
} from 'react-bootstrap'
import deisDashLogo from '../../static/deis-dash-logo-md.png'
//import deisDashLogo from '../../static/deis-dash-logo-md.png'

const mapStateToProps = s => ({
user: s.user,
Expand Down Expand Up @@ -47,7 +47,7 @@ const Header = connect(mapStateToProps, null, null, {pure: false})(class extends
<Navbar>
<Navbar.Header>
<Navbar.Brand className="nav-logo">
<a href="#"><img src={deisDashLogo} alt="deis dash" /></a>
<a href="#"><img src="broken.png" alt="deis dash" /></a>
</Navbar.Brand>
<Navbar.Toggle />
</Navbar.Header>
Expand Down
Loading