25 lines
710 B
TypeScript
25 lines
710 B
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>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|