mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-04-22 06:08:00 +00:00
12 lines
254 B
JavaScript
12 lines
254 B
JavaScript
import React from 'react'
|
||
|
||
const Footer = () => {
|
||
return (
|
||
<div className="bg-black h-[50px] text-white flex justify-center items-center">
|
||
<div className='text-xl'>Made with love ❤️ by Azaan</div>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
export default Footer
|