cv/src/app/components/Footer.tsx

13 lines
560 B
TypeScript
Raw Normal View History

2023-05-26 18:44:44 +00:00
import React from 'react';
import { Container } from 'react-bootstrap';
2023-05-27 03:25:48 +00:00
import { usePersonContext } from '../hooks/PersonContext';
2023-05-26 18:44:44 +00:00
export default function Footer() {
const personalData = usePersonContext()
return (
<Container fluid className="footer text-center">
2023-06-03 11:13:47 +00:00
<div><small>Created by {personalData.name}, last updated on {personalData.updatedDate}</small></div>
<div><small className='tiny'>CV engineered by <a href={'https://www.dejvino.cz/'} target={'_blank'}>Dejvino</a></small></div>
2023-05-26 18:44:44 +00:00
</Container>
)
}