diff --git a/src/app/BridgeSwap/Index.tsx b/src/app/BridgeSwap/Index.tsx
index f660c1ad..c8e83af2 100644
--- a/src/app/BridgeSwap/Index.tsx
+++ b/src/app/BridgeSwap/Index.tsx
@@ -3,6 +3,8 @@ import Swap from "./Swap";
import { Details } from "./Details";
import MaintenanceBanner from "@/components/modal/MaintenanceBanner";
import { SwitchToTestNetwork } from "@/staging/components/cross-trade/components/common/WrongNetwork";
+import { BANNER10 } from "@/staging/constants/banner";
+import { InitialBanner } from "@/staging/components/legacy-titan/InitialBanner";
export default function BridgeSwap() {
return (
@@ -23,6 +25,7 @@ export default function BridgeSwap() {
>
{/* */}
+ {BANNER10 && }
{/* */}
diff --git a/src/constant/url/index.ts b/src/constant/url/index.ts
index 69971632..a3e72e15 100644
--- a/src/constant/url/index.ts
+++ b/src/constant/url/index.ts
@@ -1,2 +1,5 @@
export const GoogleFormURL =
"https://docs.google.com/forms/d/e/1FAIpQLSc6pHHABsnIZ2MvcEa57VCtSNTRXHAaFjBLQYf1LbiMB_81OA/viewform";
+
+export const TitanSunSetGuideURL =
+ "https://medium.com/tokamak-network/tokamak-network-to-sunset-titan-b4471019c92";
diff --git a/src/staging/components/legacy-titan/InitialBanner.tsx b/src/staging/components/legacy-titan/InitialBanner.tsx
new file mode 100644
index 00000000..0ffc14f7
--- /dev/null
+++ b/src/staging/components/legacy-titan/InitialBanner.tsx
@@ -0,0 +1,56 @@
+import { TitanSunSetGuideURL } from "@/constant/url";
+import { Flex, Text } from "@chakra-ui/react";
+import React from "react";
+
+export const InitialBanner = () => {
+ return (
+
+
+
+ Titan to shutown in December, 2024
+
+
+ Read about it more{" "}
+
+ here
+
+ . The exact date will be announced soon.
+
+
+
+
+ Tokamak Bridge to shutdown in January, 2025
+
+
+ Pools and cross trade will shutdown in December, while other functions
+ will continue with limited support until their final shutdown in
+ January
+
+
+
+ );
+};
diff --git a/src/staging/constants/banner.ts b/src/staging/constants/banner.ts
new file mode 100644
index 00000000..463dd6d0
--- /dev/null
+++ b/src/staging/constants/banner.ts
@@ -0,0 +1,2 @@
+export const BANNER10 = true;
+export const MAINTENANCE_MODE = false;