Portfolio / src /components /Footer.jsx
Abhisingh-18's picture
Mirror of github.com/Abhisingh18/Portfolio
162b974 verified
Raw
History Blame Contribute Delete
376 Bytes
const Footer = () => {
return (
<footer className="bg-[#0a0a0a] py-8 text-center text-gray-500 text-sm border-t border-white/5">
<p>© {new Date().getFullYear()} Abhishek Singh. All rights reserved.</p>
<p className="mt-2 text-xs">Built with React, Tailwind & Framer Motion</p>
</footer>
);
};
export default Footer;