diff --git a/README.md b/README.md index 1404a3358..4ae25ef22 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ Spoolman is a self-hosted web service designed to help you efficiently manage yo [](https://github.com/Donkie/Spoolman/wiki) [](https://github.com/Donkie/Spoolman/releases) +[](https://github.com/sponsors/Donkie) ### Features * **Filament Management**: Keep comprehensive records of filament types, manufacturers, and individual spools. diff --git a/client/public/kofi_s_logo_nolabel.png b/client/public/kofi_s_logo_nolabel.png deleted file mode 100644 index 1ec535d8d..000000000 Binary files a/client/public/kofi_s_logo_nolabel.png and /dev/null differ diff --git a/client/public/locales/en/common.json b/client/public/locales/en/common.json index 956e9913e..0983c2a18 100644 --- a/client/public/locales/en/common.json +++ b/client/public/locales/en/common.json @@ -46,7 +46,7 @@ "saveSuccessful": "Save successful!", "validationError": "Validation error: {{error}}" }, - "kofi": "Tip me on Ko-fi", + "sponsor": "Sponsor me on GitHub", "loading": "Loading", "version": "Version", "unknown": "Unknown", diff --git a/client/src/components/layout.tsx b/client/src/components/layout.tsx index 1921819b0..b9aa4ce09 100644 --- a/client/src/components/layout.tsx +++ b/client/src/components/layout.tsx @@ -3,10 +3,15 @@ import { useTranslate } from "@refinedev/core"; import { Button } from "antd"; import { Footer } from "antd/es/layout/layout"; import Logo from "../icon.svg?react"; -import { getBasePath } from "../utils/url"; import { Header } from "./header"; import { Version } from "./version"; +const SponsorHeart = () => ( + +); + const SpoolmanFooter = () => { const t = useTranslate(); @@ -26,19 +31,13 @@ const SpoolmanFooter = () => {