michal-sapka-me

Codebase for my homepage.
git clone git://vcs.sapka.me/michal-sapka-me
Log | Files | Refs

commit 5bff8f1e81d441b04882d11fbe3edbee6071fa3c
parent 4d51ae1e73683f68a8268a6e2956bbe139879c38
Author: Michal Sapka <michal@sapka.me>
Date:   Tue,  6 Sep 2022 23:44:48 +0200

feat: border around photo

Diffstat:
Mpages/index.tsx | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git 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>