diff --git a/public/assets/washfit.png b/public/assets/washfit.png new file mode 100644 index 00000000..252fc95f Binary files /dev/null and b/public/assets/washfit.png differ diff --git a/src/components/icons/Logo.tsx b/src/components/icons/Logo.tsx index 3f2e3cdc..97494360 100644 --- a/src/components/icons/Logo.tsx +++ b/src/components/icons/Logo.tsx @@ -1,8 +1,11 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ +import Image from 'next/image'; + import { Colors, colors } from '@styles/colorPalette'; interface LogoProps { width?: number - height?:number + height?: number color?: Colors onClick?: () => void } @@ -11,10 +14,7 @@ function Logo({ width = 97, height = 19, color = 'black', onClick, }: LogoProps) { return ( - - - - + logo ); }