diff options
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | apps/landing/src/Homepage.tsx | 9 |
2 files changed, 11 insertions, 2 deletions
@@ -103,6 +103,10 @@ If you're enjoying using Karakeep, drop a ⭐️ on the repo! <a href="https://www.buymeacoffee.com/mbassem" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a> +## License + +Karakeep is licensed under [AGPL-3.0](https://github.com/karakeep-app/karakeep/blob/main/LICENSE) and owned by [Localhost Labs Ltd](https://localhostlabs.co.uk). + ## Star History [](https://star-history.com/#karakeep-app/karakeep&Date) diff --git a/apps/landing/src/Homepage.tsx b/apps/landing/src/Homepage.tsx index b00d7f2e..7ab7fdfd 100644 --- a/apps/landing/src/Homepage.tsx +++ b/apps/landing/src/Homepage.tsx @@ -230,8 +230,13 @@ function Features() { function Footer() { return ( - <div className="flex items-center justify-between bg-black px-10 py-6 text-sm text-gray-300"> - <div>© 2024-{currentYear} karakeep.app</div> + <div className="flex items-center justify-between bg-gray-100 px-10 py-6 text-sm"> + <div> + © 2024-{currentYear}{" "} + <a href="https://localhostlabs.co.uk" target="_blank" rel="noreferrer"> + Localhost Labs Ltd + </a> + </div> <div className="flex items-center gap-6"> <a href={DOCS_LINK} |
