From 9ca5f12aa9f0301ca7f32f287e5d126779cc0f4d Mon Sep 17 00:00:00 2001 From: Sang Kim Date: Mon, 10 Jun 2024 11:24:02 +0900 Subject: [PATCH] Add a banner --- app/src/components/layouts/TopNavbar.tsx | 32 +++++++++++++++--------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/app/src/components/layouts/TopNavbar.tsx b/app/src/components/layouts/TopNavbar.tsx index a8c5ca2..4f07c82 100644 --- a/app/src/components/layouts/TopNavbar.tsx +++ b/app/src/components/layouts/TopNavbar.tsx @@ -8,18 +8,26 @@ export const TopNavbar = () => { const { address } = useZkLogin(); return ( -
- - Mysten Blackjack - -
- {!!address && ( -
- - -
- )} + <> +
+
+ [Mysten Blackjack] is provided for testnet purposes only and do not involve real money or the opportunity to win real money. +
-
+
+ + Mysten Blackjack + +
+ {!!address && ( +
+ + +
+ )} +
+
+ ); };