developer-portfolios/Azaan Suhail/src/components/Footer.jsx

12 lines
254 B
React
Raw Normal View History

2024-10-29 15:28:56 +00:00
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