feat(legal): add EULA modal in footer and support-project wording (v1.0.3)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Ivan Fontosh
2026-07-03 22:03:03 +08:00
parent 9013fa0b49
commit cb245bcb7d
13 changed files with 423 additions and 19 deletions
+4 -1
View File
@@ -4,6 +4,7 @@ import { createRoot } from "react-dom/client";
import { App } from "./App";
import { LocaleProvider } from "./i18n/LocaleProvider";
import { CrowdfundingModalProvider } from "./providers/CrowdfundingModalProvider";
import { EulaModalProvider } from "./providers/EulaModalProvider";
import { ExchangeRateProvider } from "./providers/ExchangeRateProvider";
import "./styles/global.css";
@@ -17,7 +18,9 @@ createRoot(rootEl).render(
<LocaleProvider>
<ExchangeRateProvider>
<CrowdfundingModalProvider>
<App />
<EulaModalProvider>
<App />
</EulaModalProvider>
</CrowdfundingModalProvider>
</ExchangeRateProvider>
</LocaleProvider>