Skip to content

Commit

Permalink
fix: projects footer
Browse files Browse the repository at this point in the history
  • Loading branch information
remiilekun committed May 14, 2021
1 parent 924ba17 commit 4e1c698
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
12 changes: 7 additions & 5 deletions src/components/molecules/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,17 @@ export const Footer = () => {
<Wrapper>
<Content>
<Typography.Paragraph align="center" size="small">
Designed With{' '}
<span aria-label="Heart Emoji" role="img">
♥️
<span aria-label="Design Emoji" role="img">
🎨
</span>{' '}
by Layor Salami and{' '}
<a href="http://layorsalami.com/" rel="noopener noreferrer" target="_blank">
Layor Salami
</a>{' '}
,
<span aria-label="Code Emoji" role="img">
👨🏾‍💻
</span>{' '}
by Remi Salami
Remi Salami
</Typography.Paragraph>
</Content>
</Wrapper>
Expand Down
14 changes: 10 additions & 4 deletions src/pages/projects.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
import Head from 'next/head';
import { Content } from 'components/atoms';
import { ProjectsBanner } from 'components/molecules';
import { ProjectsBanner, Footer } from 'components/molecules';
import Projects from 'components/organisms/Projects';

import { Box } from 'rebass';

const ProjectsPage = () => {
return (
<>
<Head>
<title>Projects - Remilekun Salami</title>
</Head>
<ProjectsBanner />
<Content fluid>
<Projects showAll />
</Content>
<Box mb="8rem">
<Content fluid>
<Projects showAll />
</Content>
</Box>

<Footer />
</>
);
};
Expand Down

0 comments on commit 4e1c698

Please sign in to comment.