michal-sapka-me

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

commit 6977eb0132a61e3f890ae68ace41b2acff6533e3
parent 2a993a9f2f6000097a6aee12f7ed994713e4cbab
Author: Michal Sapka <michal@sapka.me>
Date:   Sun,  4 Sep 2022 22:19:33 +0200

style: fix lint problems

Diffstat:
Mcomponents/layout.tsx | 2+-
Mpages/index.tsx | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/layout.tsx b/components/layout.tsx @@ -1,4 +1,4 @@ -import TopNav from '../components/topnav.tsx' +import TopNav from '../components/topnav' import { Container, Box } from '@chakra-ui/react' export default function Layout({ children }) { return ( diff --git a/pages/index.tsx b/pages/index.tsx @@ -49,7 +49,7 @@ const Home: NextPage = () => { <Box as="section"> <Heading variant="section-title" as="h3">About me</Heading> <Text> - I am a self-thought software engineer working at <Link href="https://zendesk.com" isExternal>Zendesk</Link>. Even though I started my professional programming life relatively late in life, I've been passionate about computers since I was ten. I love the process of creating software. Even though I consider caring about the product a requisite, the technical side strongly drives me. I take pride in what and how I do things. I have most extensive experience working with Ruby on Rails and relative databases. Still, I am expanding my knowledge around service-oriented architecture, no-SQL databases, and other languages - currently, I am trying to get the hang of Golang and MongoDB. I am also trying to get familiar with the modern ReactJS ecosystem. + I am a self-thought software engineer working at <Link href="https://zendesk.com" isExternal>Zendesk</Link>. Even though I started my professional programming life relatively late in life, I&apos;ve been passionate about computers since I was ten. I love the process of creating software. Even though I consider caring about the product a requisite, the technical side strongly drives me. I take pride in what and how I do things. I have most extensive experience working with Ruby on Rails and relative databases. Still, I am expanding my knowledge around service-oriented architecture, no-SQL databases, and other languages - currently, I am trying to get the hang of Golang and MongoDB. I am also trying to get familiar with the modern ReactJS ecosystem. </Text> </Box> @@ -65,7 +65,7 @@ const Home: NextPage = () => { <Heading variant="section-title" as="h3">Recent publications</Heading> <VStack spacing="1" alignItems="start"> {Publications.map((value, key) => { - return <Box> + return <Box key={key}> <Link href={value.url} isExternal>{value.name}</Link> </Box>