Skip to content

Commit

Permalink
chore: about me content
Browse files Browse the repository at this point in the history
  • Loading branch information
remiilekun committed May 14, 2021
1 parent 8af39a5 commit 90eaf17
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 17 deletions.
17 changes: 14 additions & 3 deletions src/components/molecules/Company.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ const Period = styled(Typography.Paragraph)`
opacity: 0.5;
`;

const Description = styled(Typography.Paragraph)`
const Description = styled.li`
color: ${({ theme }) => theme.colors.white};
font-weight: ${({ theme }) => theme.font.weight.medium};
line-height: 1.7;
margin-bottom: 1rem;
margin-bottom: 0.5rem;
`;

const HeaderWrapper = styled(Box)`
Expand Down Expand Up @@ -85,7 +86,17 @@ export const Company = ({ company, description, period, role }) => {
<CompanyHeader>{company}</CompanyHeader>
<Role>{role}</Role>
<Period>{period}</Period>
<Description>{description}</Description>
<Box
as="ul"
sx={{
listStyle: 'disc',
listStylePosition: 'inside',
}}
>
{description.map(x => (
<Description>{x}</Description>
))}
</Box>
</Wrapper>
);
};
Expand Down
17 changes: 9 additions & 8 deletions src/components/organisms/AboutMe.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { Box, Flex } from 'rebass';
import { useMeasure } from 'react-use';
import { skills } from 'data/skills';
import Fade from 'react-reveal/Fade';
import Companies from './Companies';

const Wrapper = styled.section`
margin-bottom: 15rem;
Expand Down Expand Up @@ -77,12 +78,12 @@ const AboutMe = props => {
>
<Fade left>
<Text>
Hello, I am Remilekun Salami a.k.a Casper, A software engineer based in Lagos, Nigeria. I am
passionate about writing elegant code to enable easy extendabilty and maintenance. I’m highly skilled
in building functional applications and can comfortably translate design mockups into responsive
pixel-perfect web and/or mobile screens to bring designs to life. I currently work at uduX as a
frontend developer and I work on the uduX iOS and web applications. In my spare time, I read articles
to improve myself, read manga, watch anime/movies, and hang out with friends.
Hello, I am Remilekun Salami (Casper), a software engineer based in Lagos, Nigeria. I am passionate
about writing elegant code to enable easy extendabilty and maintenance. I’m highly skilled in building
functional applications and can comfortably translate design mockups into responsive pixel-perfect web
and/or mobile screens to bring designs to life. I currently work at OPay as a frontend developer. In
my spare time I read articles to help my growth, read manga, watch anime/movies, hang out with
friends, you can also catch me playing Apex Legends (gamer tag: casper_rsj).
</Text>
</Fade>
</Box>
Expand Down Expand Up @@ -110,10 +111,10 @@ const AboutMe = props => {
</Flex>
</SubSection>

{/* <SubSection>
<SubSection>
<Subtitle>I have been able to create solutions for:</Subtitle>
<Companies />
</SubSection> */}
</SubSection>
</Content>
</Wrapper>
);
Expand Down
34 changes: 28 additions & 6 deletions src/data/companies.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,40 @@
export const companies = [
{
company: 'OPay',
description: [
'Write reusable, performant code for internal projects.',
'Work with product & design teams to build & maintain features on various projects.',
'Engineer and maintain major features and functionalities across projects using ES6, React, Emotion, and integration of apis.',
'Creating & Updating local API documentation using Gatsby & Markdown',
'Developing competencies in backend tasks such as creating & consuming APIs and querying MongoDB & SQL databases.',
],
role: 'Frontend Developer',
period: 'July 2020 - Present',
id: 'opay',
},
{
company: 'Groove Platforms',
description:
'Front end developer in charge on implementing code from designs for both web and mobile using React and React-Native frameworks.. ',
description: [
'Translate designs to extendable, maintainable code for the uduX web and iOS apps.',
'Engineer and maintain major features of uduX web apps using ES6, React, Emotion, Firebase, and integration of apis.',
'Engineer a dynamic UI rendering system for screens. Hence improving easy re-ordering and modification of items on the app.',
'Implement performant solutions to enhance optimization for maximum speed and scalability',
'Integrate payment gateway for a secure way to pay for subscriptions.',
],
role: 'Frontend Developer',
period: 'February 2019 - Present',
period: 'March 2019 - July 2020',
id: 'udux',
},
{
company: 'Summitech Ltd',
description:
'Front end developer in charge on implementing code from designs for both web and mobile. \n Worked on several internal web projects using Javascript, HTML and CSS. ',
description: [
'Write reusable, performant code for a diverse array of client and internal projects.',
'Work with a variety of different languages, frameworks, and content management systems such as JavaScript, TypeScript, React, Vue, Gatsby Js, Angular, React-Native, NativeScript, Node.js, Wordpress e.t.c.',
'Communicate and collaborate with teams of software engineers, UI/UX designers, project managers on a daily basis.',
'Contribute to open source projects.',
],
role: 'Frontend Developer',
period: 'June 2017 - February 2019',
period: 'June 2017 - March 2019',
id: 'summit',
},
];

0 comments on commit 90eaf17

Please sign in to comment.