10 lines
408 B
TypeScript
10 lines
408 B
TypeScript
import Link from "next/link";
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<div className="p-6 pt-0 mt-auto text-center dark:text-white-dark ltr:sm:text-left rtl:sm:text-right">© {new Date().getFullYear()}. Copyright 2025 © TamilCultureAssociation. Powered by <Link href="https://metatroncubesolutions.com/" target="_blank">MetatronCube</Link>. All Rights Reserved.</div>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|