From 391ba47fd1518297415d77734c49a0e8c75ee927 Mon Sep 17 00:00:00 2001 From: isra el Date: Thu, 18 May 2023 10:24:16 +0300 Subject: [PATCH] chore(web): replace img with next Image --- web/pages/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/pages/index.tsx b/web/pages/index.tsx index 80abf54..981f4d5 100644 --- a/web/pages/index.tsx +++ b/web/pages/index.tsx @@ -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 }) => ( - {'wave'} + {'wave'} )