developer-portfolios/Azaan Suhail/src/components/Footer.jsx
2024-10-29 20:58:56 +05:30

12 lines
254 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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