feat(client/landing): add testimonials section to landing page

This commit is contained in:
Amruth Pillai
2022-03-09 09:37:38 +01:00
parent 7e1448bbf9
commit 6f02048ebd
14 changed files with 216 additions and 15 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ type Props = {
};
const Logo: React.FC<Props> = ({ size = 64 }) => {
return <Image alt="Reactive Resume" src="/images/logo.svg" className="rounded" width={size} height={size} />;
return <Image alt="Reactive Resume" src="/images/logos/logo.svg" className="rounded" width={size} height={size} />;
};
export default Logo;