Files
neodlp-extension/components/footer.tsx

13 lines
628 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export default function Footer() {
const manifest = browser.runtime.getManifest();
return (
<footer className="flex flex-col items-center justify-center text-center w-full">
<p className="text-xs text-muted-foreground">
<a href={manifest.homepage_url} target="_blank" className="">NeoDLP Extension</a> &copy; {new Date().getFullYear()} - <a href="https://github.com/neosubhamoy/neodlp-extension/blob/main/LICENSE" target="_blank">MIT License</a> <br></br> Made with by <a href="https://neosubhamoy.com" target="_blank">Subhamoy</a>
</p>
</footer>
)
}