From b636c1126327b21c1792d57794db7a8a5f30ef86 Mon Sep 17 00:00:00 2001 From: Danny Delott Date: Mon, 24 Mar 2025 22:17:28 -0700 Subject: [PATCH] Add banner for paused annnouncment --- apps/hyperdrive-trading/src/ui/app/Page.tsx | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/apps/hyperdrive-trading/src/ui/app/Page.tsx b/apps/hyperdrive-trading/src/ui/app/Page.tsx index 86e118f2a..3076d6fc5 100644 --- a/apps/hyperdrive-trading/src/ui/app/Page.tsx +++ b/apps/hyperdrive-trading/src/ui/app/Page.tsx @@ -3,9 +3,9 @@ import { TanStackRouterDevtools } from "@tanstack/router-devtools"; import { PropsWithChildren, ReactElement } from "react"; import Footer from "src/ui/app/Footer/Footer"; import { Navbar } from "src/ui/app/Navbar/Navbar"; +import CustomBanner from "src/ui/base/components/CustomBanner"; import { TermsOfUseAndPrivacyPolicyModal } from "src/ui/compliance/TermsOfUseAndPrivacyPolicyModal"; import { useAddressScreen } from "src/ui/compliance/hooks/useAddressScreen"; -import { MilesBanner } from "src/ui/rewards/MilesBanner"; export function Page({ children }: PropsWithChildren): ReactElement { // compliance @@ -15,7 +15,19 @@ export function Page({ children }: PropsWithChildren): ReactElement {
- + {/* */} + + + In an abundance of caution, Hyperdrive pools have been paused + while we investigate a potential vulnerability. We are not aware + of any loss in user funds at this time. + +
+ } + /> {/* compliance */}