diff options
author | Michal Sapka <michal@sapka.me> | 2022-09-06 23:44:48 +0200 |
---|---|---|
committer | Michal Sapka <michal@sapka.me> | 2022-09-06 23:44:48 +0200 |
commit | 5bff8f1e81d441b04882d11fbe3edbee6071fa3c (patch) | |
tree | cec389c497cef2ae1c1b037a129bb90bfb107e25 | |
parent | 4d51ae1e73683f68a8268a6e2956bbe139879c38 (diff) |
feat: border around photo
-rw-r--r-- | pages/index.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index 47a944f..a654d93 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -11,6 +11,7 @@ import { Image as CImage, Stack, Button, + useColorModeValue } from '@chakra-ui/react' import { AiFillGithub,AiFillMediumCircle} from "react-icons/ai"; import Publications from "../data/publications" @@ -49,6 +50,9 @@ const Home: NextPage = () => { src="images/michal.png" width="80px" borderRadius="full" + borderWidth = "3px" + borderStyle = "solid" + borderColor = {useColorModeValue("#FFFFFF", "#6272a4")} /> </Box> </Stack> |