From 80009f99e879956e213f5e4f5ebb117f1af8335f Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 27 Sep 2025 17:03:39 +0300 Subject: [PATCH] chore(website): rebrand donate to support us --- apps/website/src/components/Header.tsx | 2 +- apps/website/src/index.tsx | 4 ++-- .../src/pages/{Donate/Donate.css => SupportUs/SupportUs.css} | 0 .../src/pages/{Donate/Donate.tsx => SupportUs/SupportUs.tsx} | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename apps/website/src/pages/{Donate/Donate.css => SupportUs/SupportUs.css} (100%) rename apps/website/src/pages/{Donate/Donate.tsx => SupportUs/SupportUs.tsx} (99%) diff --git a/apps/website/src/components/Header.tsx b/apps/website/src/components/Header.tsx index ba56f8403..402e4a640 100644 --- a/apps/website/src/components/Header.tsx +++ b/apps/website/src/components/Header.tsx @@ -10,7 +10,7 @@ interface HeaderLink { const HEADER_LINKS: HeaderLink[] = [ { url: "https://docs.triliumnotes.org/", text: "Documentation", external: true }, - { url: "/donate", text: "Support us" } + { url: "/support-us/", text: "Support us" } ] export function Header() { diff --git a/apps/website/src/index.tsx b/apps/website/src/index.tsx index 72527f4da..449102f83 100644 --- a/apps/website/src/index.tsx +++ b/apps/website/src/index.tsx @@ -6,7 +6,7 @@ import { NotFound } from './pages/_404.jsx'; import './style.css'; import Footer from './components/Footer.js'; import GetStarted from './pages/GetStarted/get-started.js'; -import Donate from './pages/Donate/Donate.js'; +import SupportUs from './pages/SupportUs/SupportUs.js'; export function App() { return ( @@ -17,7 +17,7 @@ export function App() { - +