fix: remove usdc warning message in the bridge ui (#810)

This commit is contained in:
Victorien Gauch
2025-03-25 10:34:45 +01:00
committed by GitHub
parent 40ccbbc7cf
commit e8d2e34d1b

View File

@@ -3,19 +3,12 @@
import InternalNav from "@/components/internal-nav";
import BridgeLayout from "@/components/bridge/bridge-layout";
import styles from "./page.module.scss";
import TopBanner from "@/components/top-banner";
export default function Home() {
return (
<>
<TopBanner
text="Bridging USDC (USDC.e) is temporarily disabled until March 26. Learn more in our announcement here."
href="https://x.com/LineaBuild/status/1901347758230958528"
/>
<section className={styles["content-wrapper"]}>
<InternalNav />
<BridgeLayout />
</section>
</>
<section className={styles["content-wrapper"]}>
<InternalNav />
<BridgeLayout />
</section>
);
}