Skip to content

Commit

Permalink
perf(webapp): use webp images in network selector
Browse files Browse the repository at this point in the history
  • Loading branch information
Torresmorah committed Nov 28, 2022
1 parent 26268c4 commit c4e7c18
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 9 deletions.
Binary file added webapp/public/edenia.webp
Binary file not shown.
Binary file added webapp/src/assets/eos.webp
Binary file not shown.
Binary file added webapp/src/assets/jungle.webp
Binary file not shown.
Binary file added webapp/src/assets/lacchain.webp
Binary file not shown.
Binary file added webapp/src/assets/libre.webp
Binary file not shown.
Binary file added webapp/src/assets/proton.webp
Binary file not shown.
Binary file added webapp/src/assets/telos.webp
Binary file not shown.
Binary file added webapp/src/assets/ultra.webp
Binary file not shown.
Binary file added webapp/src/assets/wax.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion webapp/src/components/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const Footer = () => {
{t('footer2')}
<img
alt="antelope tools dashboard"
src={'/edenia.png'}
src={'/edenia.webp'}
className={classes.imgHeaderLogo}
loading="lazy"
/>
Expand Down
16 changes: 8 additions & 8 deletions webapp/src/components/NetworkSelector/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ import ExpandLessIcon from '@mui/icons-material/ExpandLess'
import Typography from '@mui/material/Typography'
import { makeStyles } from '@mui/styles'

import jungleImg from '../../assets/jungle.png'
import waxImg from '../../assets/wax.png'
import lacchainImg from '../../assets/lacchain.png'
import telosImg from '../../assets/telos.png'
import protonImg from '../../assets/proton.png'
import eosImg from '../../assets/eos.png'
import jungleImg from '../../assets/jungle.webp'
import waxImg from '../../assets/wax.webp'
import lacchainImg from '../../assets/lacchain.webp'
import telosImg from '../../assets/telos.webp'
import protonImg from '../../assets/proton.webp'
import eosImg from '../../assets/eos.webp'
import airwireImg from '../../assets/airwire.png'
import ultraImg from '../../assets/ultra.jpg'
import libreImg from '../../assets/libre.png'
import ultraImg from '../../assets/ultra.webp'
import libreImg from '../../assets/libre.webp'

import styles from './styles'

Expand Down

0 comments on commit c4e7c18

Please sign in to comment.