diff --git a/src/components/layout/Layout.tsx b/src/components/layout/Layout.tsx index a7d7e74..678fd44 100644 --- a/src/components/layout/Layout.tsx +++ b/src/components/layout/Layout.tsx @@ -1,23 +1,23 @@ -import React from 'react'; -import { Box, Center, HStack, Link, Text, VStack } from '@chakra-ui/react'; +import { ReactNode } from 'react'; +import { Box, Center, HStack, Icon, Link, Spacer, VStack } from '@chakra-ui/react'; +import { FiExternalLink } from 'react-icons/fi'; import NavLink from './NavLink'; -const Layout = (props: { children: React.ReactNode }) => ( -
+const Layout = (props: { children: ReactNode }) => ( +
- + home cv + + + source code + + {props.children} - - Source code of this website is available at{' '} - - GitHub - -
);