File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
- import { Text } from "@chakra-ui/react"
2
-
3
1
import DismissableBanner from "@/components/Banners/DismissableBanner"
4
2
import Emoji from "@/components/Emoji"
5
- import Link from "@/components/Link"
3
+
4
+ import { BaseLink } from "./ui/Link"
6
5
7
6
type DevconGrantsBannerProps = {
8
7
pathname : string
@@ -12,14 +11,14 @@ const DevconGrantsBanner = ({ pathname }: DevconGrantsBannerProps) => {
12
11
if ( pathname . includes ( "community" ) && pathname . includes ( "events" ) ) {
13
12
return (
14
13
< DismissableBanner storageKey = "devconGrants" >
15
- < Text m = { 0 } >
14
+ < p >
16
15
The Road to Devcon Grants support Ethereum education initiatives in
17
16
and close to Southeast Asia < Emoji text = "🦄" /> < Emoji text = "🌏" /> { " " }
18
17
Learn more{ " " }
19
- < Link href = "https://esp.ethereum.foundation/devcon-grants" >
18
+ < BaseLink href = "https://esp.ethereum.foundation/devcon-grants" >
20
19
here.
21
- </ Link >
22
- </ Text >
20
+ </ BaseLink >
21
+ </ p >
23
22
</ DismissableBanner >
24
23
)
25
24
}
You can’t perform that action at this time.
0 commit comments