Skip to content

Commit

Permalink
add pdpd logo
Browse files Browse the repository at this point in the history
  • Loading branch information
lideming committed Aug 16, 2021
1 parent c3ec101 commit 54987b3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Binary file added res/pdpd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/activities/FrontActivity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,22 @@ import React from 'react';
import { Activity, createActivity } from './Activity';
import { LidarView } from '../components/LidarView';
import { RearView } from '../components/RearView';
import pdpd from "../../res/pdpd.png";

export const FrontActivity = createActivity(function (props) {
return (
<Activity hidden={props.hidden} className="front">
<RearView hidden={props.hidden} />
<LidarView />
<img src={pdpd} alt="" style={{
position: 'absolute',
right: '10px',
bottom: '10px',
width: '240px',
background: 'none',
height:'auto',
'filter': 'drop-shadow(0 0 3px #000000)'
}}/>
</Activity>
);
});

0 comments on commit 54987b3

Please sign in to comment.