File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Libraries
2
+ import React from "react"
3
+ import { Center , Text } from "@chakra-ui/react"
4
+
5
+ // Components
6
+ import BannerNotification from "../BannerNotification"
7
+
8
+ const BugBountyBanner : React . FC = ( ) => (
9
+ < BannerNotification shouldShow = { true } >
10
+ < Center >
11
+ < Text m = { 0 } p = { 0 } >
12
+ All Shapella-related bounties currently receive a 2x bonus multiplier
13
+ (up to 500,000 USD) until 5th of April 2023.
14
+ </ Text >
15
+ </ Center >
16
+ </ BannerNotification >
17
+ )
18
+
19
+ export default BugBountyBanner
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ import ButtonLink from "../components/ButtonLink"
24
24
import PageMetadata from "../components/PageMetadata"
25
25
import ExpandableCard from "../components/ExpandableCard"
26
26
import FeedbackCard from "../components/FeedbackCard"
27
+ import BugBountyBanner from "../components/Banners/BugBountyBanner"
27
28
import { getImage } from "../utils/image"
28
29
29
30
import type { ChildOnlyProp , Context } from "../types"
@@ -444,6 +445,8 @@ const BugBountiesPage = ({
444
445
title = { t ( "page-upgrades-bug-bounty-meta-title" ) }
445
446
description = { t ( "page-upgrades-bug-bounty-meta-description" ) }
446
447
/>
448
+ { /* TODO: Remove April 6 */ }
449
+ < BugBountyBanner />
447
450
< Content >
448
451
< HeroCard >
449
452
< HeroContainer >
You can’t perform that action at this time.
0 commit comments