(chore): initial MVP release v0.1.0

This commit is contained in:
2025-05-01 21:39:12 +05:30
commit bd9483374f
36 changed files with 10146 additions and 0 deletions

13
components/footer.tsx Normal file
View File

@@ -0,0 +1,13 @@
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>
)
}