mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-21 11:20:17 -04:00
25 lines
645 B
TypeScript
25 lines
645 B
TypeScript
export default function Footer() {
|
|
return (
|
|
<div
|
|
style={{
|
|
position: 'absolute',
|
|
bottom: '0.5rem',
|
|
fontSize: '0.75rem',
|
|
textAlign: 'center',
|
|
width: '100%',
|
|
}}
|
|
>
|
|
Made by <a href="https://linkedin.com/in/michaelfatemi">Michael Fatemi</a>
|
|
,{' '}
|
|
<a href="https://www.linkedin.com/in/joshua-hsueh-984435b8/">
|
|
Joshua Hsueh
|
|
</a>
|
|
,{' '}
|
|
<a href="https://www.linkedin.com/in/nkanchinadam/">Nitin Kanchinadam</a>.
|
|
Code:{' '}
|
|
<a href="https://github.com/myfatemi04/wheelshare-frontend">frontend</a>,{' '}
|
|
<a href="https://github.com/myfatemi04/wheelshare-altbackend">backend</a>
|
|
</div>
|
|
);
|
|
}
|