expo-web/src/client/components/DownloadCVMobile.tsx

33 lines
732 B
TypeScript

import React from 'react';
/**
* @return {jsx} a presentation of me
*/
export default function DownloadCVMobile() {
return (
<div
className='
tile-child d-flex
flex-column
align-items-center
justify-content-center'
id='downloadcv'>
<a
href='/static/pdfs/Resume_Gaetan_Brochard_2020.pdf'
download
rel="noopener noreferrer"
target="_blank"
className='d-inline btn btn-mine mb-1'>
Download my Resume
</a>
<a
/* eslint-disable */
href='https://www.ouest-france.fr/bretagne/arzal-56190/arzal-gaetan-brochard-propose-une-deambulation-numerique-6949455'
/* eslint-enable */
className='d-inline btn btn-mine mt-1'>
Newspaper Article
</a>
</div>
);
};