aboutsummaryrefslogtreecommitdiffstats
path: root/apps/landing/app
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-04-05 15:53:42 +0100
committerGitHub <noreply@github.com>2025-04-05 15:53:42 +0100
commit16866d8808c09c0cebc9861e04caa78fbcd10215 (patch)
tree432a8074b6fd3f48f35318f47f2ab36bfffe1168 /apps/landing/app
parent55ae6796d837b74b2e61720555512a215dbb687e (diff)
downloadkarakeep-16866d8808c09c0cebc9861e04caa78fbcd10215.tar.zst
chore: Hoarder to Karakeep rebranding (#1199)
* The new logo * Changing hoarder.app to karakeep.app * Adding the admin panel warning * Update the readme
Diffstat (limited to 'apps/landing/app')
-rw-r--r--apps/landing/app/layout.tsx4
-rw-r--r--apps/landing/app/page.tsx8
2 files changed, 6 insertions, 6 deletions
diff --git a/apps/landing/app/layout.tsx b/apps/landing/app/layout.tsx
index 22f3c6ed..e655a770 100644
--- a/apps/landing/app/layout.tsx
+++ b/apps/landing/app/layout.tsx
@@ -8,8 +8,8 @@ import React from "react";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Hoarder",
- metadataBase: new URL("https://hoarder.app"),
+ title: "Karakeep",
+ metadataBase: new URL("https://karakeep.app"),
description:
"The Bookmark Everything app. Hoard links, notes, and images and they will get automatically tagged AI.",
};
diff --git a/apps/landing/app/page.tsx b/apps/landing/app/page.tsx
index db5fbd64..88fc1b03 100644
--- a/apps/landing/app/page.tsx
+++ b/apps/landing/app/page.tsx
@@ -21,8 +21,8 @@ import {
} from "lucide-react";
const GITHUB_LINK = "https://github.com/hoarder-app/hoarder";
-const DOCS_LINK = "https://docs.hoarder.app";
-const DEMO_LINK = "https://try.hoarder.app";
+const DOCS_LINK = "https://docs.karakeep.app";
+const DEMO_LINK = "https://try.karakeep.app";
const platforms = [
{
@@ -95,7 +95,7 @@ const featuresList = [
function NavBar() {
return (
<div className="flex justify-between px-3 py-4">
- <HoarderLogo height={24} gap="8px" />
+ <HoarderLogo height={38} />
<div className="hidden items-center gap-6 sm:flex">
<Link
href={DOCS_LINK}
@@ -222,7 +222,7 @@ 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 hoarder.app</div>
+ <div>© 2024 karakeep.app</div>
<div className="flex items-center gap-6">
<Link
href={DOCS_LINK}