mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
94 lines
2.0 KiB
TypeScript
94 lines
2.0 KiB
TypeScript
import { FC, useContext } from 'react';
|
|
import { DarkModeContext } from '../components/DarkMode';
|
|
import styled from 'styled-components';
|
|
import IconButton from '../components/IconButton';
|
|
|
|
const StyledFooter = styled.footer`
|
|
position: absolute;
|
|
bottom: 0;
|
|
min-height: 100px;
|
|
width: 85%;
|
|
margin: auto;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
column-gap: 2rem;
|
|
justify-content: flex-end;
|
|
align-content: center;
|
|
padding: 1rem 0rem;
|
|
|
|
@media (max-width: 768px) {
|
|
width: 95%;
|
|
}
|
|
|
|
.contact {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, 16px);
|
|
column-gap: 1rem;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
|
|
* {
|
|
user-select: none;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
column-gap: 0.5rem;
|
|
}
|
|
}
|
|
|
|
p {
|
|
display: inline;
|
|
text-align: right;
|
|
font-weight: bold;
|
|
}
|
|
`;
|
|
|
|
const Footer: FC = () => {
|
|
const { dark } = useContext(DarkModeContext);
|
|
|
|
return (
|
|
<StyledFooter>
|
|
<div className='contact'>
|
|
<IconButton
|
|
icon={dark ? '/icons/light-github.svg' : '/icons/dark-github.svg'}
|
|
width={16}
|
|
height={16}
|
|
href='https://github.com/hazemKrimi'
|
|
target='_blank'
|
|
/>
|
|
<IconButton
|
|
icon={dark ? '/icons/light-twitter.svg' : '/icons/dark-twitter.svg'}
|
|
width={16}
|
|
height={16}
|
|
href='https://twitter.com/HazemKrimi'
|
|
target='_blank'
|
|
/>
|
|
<IconButton
|
|
icon={dark ? '/icons/light-linkedin.svg' : '/icons/dark-linkedin.svg'}
|
|
width={16}
|
|
height={16}
|
|
href='https://linkedin.com/in/hazemkrimi'
|
|
target='_blank'
|
|
/>
|
|
<IconButton
|
|
icon={dark ? '/icons/light-codepen.svg' : '/icons/dark-codepen.svg'}
|
|
width={16}
|
|
height={16}
|
|
href='https://codepen.io/hazemkrimi'
|
|
target='_blank'
|
|
/>
|
|
<IconButton
|
|
icon={dark ? '/icons/light-dribbble.svg' : '/icons/dark-dribbble.svg'}
|
|
width={16}
|
|
height={16}
|
|
href='https://dribbble.com/HazemKrimi'
|
|
target='_blank'
|
|
/>
|
|
</div>
|
|
<p>Hazem Krimi © {new Date().getFullYear()}</p>
|
|
</StyledFooter>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|