Skip to content

Commit

Permalink
chore(web): replace img with next Image
Browse files Browse the repository at this point in the history
  • Loading branch information
vernu committed May 18, 2023
1 parent 5c3fb53 commit 391ba47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ import FeaturesSection from '../components/home/FeaturesSection'
import HowItWorksSection from '../components/home/HowItWorksSection'
import IntroSection from '../components/home/IntroSection'
import { loginWithGoogle, selectAuth } from '../store/authReducer'
import wageSvg from '../public/images/wave.svg'

const Wave = ({ rotate }: { rotate?: boolean }) => (
<Box transform={rotate ? 'rotate(180deg)' : ''}>
<img src={'/images/wave.svg'} alt={'wave'} />
<Image src={wageSvg} alt={'wave'} />
</Box>
)

Expand Down

1 comment on commit 391ba47

@vercel
Copy link

@vercel vercel bot commented on 391ba47 May 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.