diff --git a/client/src/components/logo/logo.tsx b/client/src/components/logo/logo.tsx index 4e46318..c5ed3c7 100644 --- a/client/src/components/logo/logo.tsx +++ b/client/src/components/logo/logo.tsx @@ -1,4 +1,5 @@ import React, { FC } from 'react' +import Link from 'next/link' import { Box, Typography } from '@mui/material' interface Props { @@ -8,15 +9,19 @@ interface Props { const Logo: FC = ({ onClick, variant }) => { return ( - - - BigOhhh - - + + + + BigOhhh + + + ) } diff --git a/client/src/components/mentor/mentor-card-item.tsx b/client/src/components/mentor/mentor-card-item.tsx index b31e659..877ffc7 100644 --- a/client/src/components/mentor/mentor-card-item.tsx +++ b/client/src/components/mentor/mentor-card-item.tsx @@ -22,6 +22,11 @@ const MentorCardItem: FC = ({ item }) => { borderRadius: 8, boxShadow: 6, backgroundColor: 'white', + transition: 'transform 0.3s, box-shadow 0.3s', + '&:hover': { + transform: 'scale(1.05)', + boxShadow: 4, + }, }} >