Skip to content

Commit

Permalink
add completed illustration assets to homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
samepant committed Oct 18, 2023
1 parent de1fb7a commit de1105c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@
]
},
"packageManager": "[email protected]"
}
}
Binary file added frontend/public/cockpit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/mech-idle-less-min.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/mech-idle-less.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions frontend/src/components/LandingCard/LandingCard.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@

.mech {
position: absolute;
bottom: -2px;
left: -40%;
bottom: -14px;
left: -29%;
height: 100%;
transform: scale(1.55);
}

.demoInfo {
Expand Down
6 changes: 5 additions & 1 deletion frontend/src/components/LandingCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ const LandingCard: React.FC = () => {
operator of its Mech.
</p>
<div className={classes.demoCard}>
<img src="/mech-idle.gif" alt="Mech" className={classes.mech} />
<img
src="/mech-idle-less-min.gif"
alt="Mech"
className={classes.mech}
/>
<ul className={classes.demoInfo}>
<li>
<label>Mech</label>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Layout: React.FC<Props> = ({ children, mechAddress }) => {

return (
<div className={classes.layout}>
<img src="/cockpit.jpg" alt="cockpit" className={classes.cockpit} />
<img src="/cockpit.png" alt="cockpit" className={classes.cockpit} />
<header className={classes.header}>
<div className={classes.nav}>
<Link to="/">
Expand Down

0 comments on commit de1105c

Please sign in to comment.