Open buy buttons in CrowdRepublic crowdfunding modal.

Replace donate.stream links with a modal announcing the upcoming campaign on CrowdRepublic, with RU/EN copy and the old buy URL commented out.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Ivan Fontosh
2026-07-01 15:32:26 +08:00
parent a48e35b839
commit fa7d537ef7
13 changed files with 267 additions and 39 deletions
+4 -1
View File
@@ -3,6 +3,7 @@ import { createRoot } from "react-dom/client";
import { App } from "./App";
import { LocaleProvider } from "./i18n/LocaleProvider";
import { CrowdfundingModalProvider } from "./providers/CrowdfundingModalProvider";
import { ExchangeRateProvider } from "./providers/ExchangeRateProvider";
import "./styles/global.css";
@@ -15,7 +16,9 @@ createRoot(rootEl).render(
<StrictMode>
<LocaleProvider>
<ExchangeRateProvider>
<App />
<CrowdfundingModalProvider>
<App />
</CrowdfundingModalProvider>
</ExchangeRateProvider>
</LocaleProvider>
</StrictMode>,