2026-02-21 19:04:54 +00:00

29 lines
1.0 KiB
TypeScript

const Footer = () => {
return (
<div className="mt-auto w-full text-center ltr:sm:text-left rtl:sm:text-right">
<div className="
px-6 py-4
bg-[#242424]
text-white
border-t border-[#000]/60
">
© {new Date().getFullYear()}. SocialBuddy All rights reserved. Powered By{' '}
<a
href="https://metatroncubesolutions.com/"
target="_blank"
className="underline hover:text-white/80"
>
MetatronCube
</a>
<span className="mx-2 text-gray-500">|</span>
<a href="/privacy-policy" className="hover:text-white/80 text-gray-400 text-sm">Privacy Policy</a>
<span className="mx-2 text-gray-500">|</span>
<a href="/terms-of-service" className="hover:text-white/80 text-gray-400 text-sm">Terms of Use</a>
</div>
</div>
);
};
export default Footer;