Skip to content

Commit

Permalink
Add linkedin contact
Browse files Browse the repository at this point in the history
  • Loading branch information
ntdesmond committed Sep 11, 2023
1 parent 023ab58 commit 0b2024b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/pages/cv/CVDocument.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
useMediaQuery,
} from '@chakra-ui/react';
import { useLocation } from 'react-router-dom';
import { AiFillGithub } from 'react-icons/ai';
import { AiFillGithub, AiFillLinkedin } from 'react-icons/ai';
import { MdMail, MdLocationPin } from 'react-icons/md';
import TelegramIcon from './components/icons/TelegramIcon';
import TagsContext from './contexts/TagsContext';
Expand Down Expand Up @@ -83,15 +83,16 @@ const CVDocument = () => {
<Box whiteSpace="nowrap">
<Grid
margin="2em"
gridTemplateRows="repeat(4, auto)"
gridTemplateRows="repeat(5, auto)"
columnGap="0.5em"
gridAutoFlow="column"
>
<Icon as={AiFillLinkedin} boxSize="1.5em" />
<Icon as={AiFillGithub} boxSize="1.5em" />
<Icon as={MdMail} boxSize="1.5em" />
<TelegramIcon boxSize="1.5em" />
<Icon as={MdLocationPin} boxSize="1.5em" />
{['github', 'mail', 'telegram', 'location'].map((key) => (
{['linkedin', 'github', 'mail', 'telegram', 'location'].map((key) => (
<Text key={key}>
<Trans
t={t}
Expand Down
1 change: 1 addition & 0 deletions src/pages/cv/data/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const info = merge({
github: '<a href="https://github.com/ntdesmond">github.com/ntdesmond</a>',
mail: '<a href="mailto:ntdesmond@gmail.com">ntdesmond@gmail.com</a>',
telegram: '<a href="https://t.me/ntdesmond">t.me/ntdesmond</a>',
linkedin: '<a href="https://www.linkedin.com/in/ntdesmond/">linkedin.com/in/ntdesmond</a>',
location: 'Innopolis, Russia',
},
ru: {
Expand Down

0 comments on commit 0b2024b

Please sign in to comment.