Skip to content

Commit

Permalink
feat: Treelink
Browse files Browse the repository at this point in the history
  • Loading branch information
wilgnne committed Jun 2, 2021
1 parent 20cc61a commit a69de6f
Showing 1 changed file with 65 additions and 8 deletions.
73 changes: 65 additions & 8 deletions pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,70 @@
import Head from 'next/head'
import React from 'react'
import { Avatar, Box, Button, Center, Heading, Image, Link, VStack } from '@chakra-ui/react'
import { FaGithub, FaTwitter, FaLinkedin } from "react-icons/fa";

export default function Home() {
return (
<div>
<Head>
<title>Create Next App</title>
<meta name="description" content="Wilgnne K." />
<link rel="icon" href={'/favicon.ico'} />
</Head>
</div>
<Center as="main" h="100%" p="15px">
<Box
borderWidth='1px'
borderRadius="lg"
bg="white"
color="black"
w="2xl"
p="15px"
>

<VStack spacing="24px" align="inherit">
<Box
position="relative"
align="center"
>
<Avatar
position="absolute"
borderWidth="2px"
top="-79px"
left="0"
right="0"
marginLeft="auto"
marginRight="auto"
size="2xl"
zIndex="1"
name="Wilgnne"
src="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/wilgnne.png"
/>
<Image
src="/github-contribution-grid-snake.svg"
/>
</Box>
<Box align="center">
<Heading>Wilgnne K.</Heading>
</Box>

<Link href="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/wilgnne" isExternal w="100%">
<Button
background="#373e47"
colorScheme="black"
color="white"
w="100%"
leftIcon={<FaGithub />}
>
GitHub
</Button>
</Link>

<Link href="https://www.linkedin.com/in/wilgnne/" isExternal w="100%">
<Button colorScheme="linkedin" w="100%" leftIcon={<FaLinkedin />}>
Linkedin
</Button>
</Link>

<Link href="https://twitter.com/WilgnneK" isExternal w="100%">
<Button colorScheme="twitter" w="100%" leftIcon={<FaTwitter />}>
Twitter
</Button>
</Link>
</VStack>
</Box>
</Center>
)
}

0 comments on commit a69de6f

Please sign in to comment.