dwysokinski.me/src/components/Layout/Footer.js

27 lines
575 B
JavaScript
Raw Normal View History

2021-01-17 08:31:50 +00:00
import React from 'react';
2021-01-17 08:31:50 +00:00
import { makeStyles } from '@material-ui/core/styles';
import { Typography } from '@material-ui/core';
import Section from '@components/Section';
const useStyles = makeStyles(theme => {
return {
footer: {
2021-01-17 08:31:50 +00:00
padding: '1.5rem 0',
},
2021-01-17 08:31:50 +00:00
};
});
function Footer() {
2021-01-17 08:31:50 +00:00
const classes = useStyles();
return (
<Section component="footer" className={classes.footer}>
<Typography align="center" variant="h6">
© {new Date().getFullYear()} Dawid Wysokiński
</Typography>
</Section>
2021-01-17 08:31:50 +00:00
);
}
2021-01-17 08:31:50 +00:00
export default Footer;