Skip to content

Commit fbce44b

Browse files
authored
Merge pull request #267 from GeekyAnts/feat/mwn-s
add link to madeWithNativeBase
2 parents 2669fc2 + 670b81e commit fbce44b

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

layouts/index.tsx

+15-5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import React, { useEffect, useContext } from "react";
33
import {
44
Box,
55
HStack,
6+
Link,
67
ScrollView,
78
Text,
89
useBreakpointValue,
@@ -246,15 +247,24 @@ function Layout({
246247
<NativebaseIconLogo width="125" height="130" />
247248
</Box>
248249

249-
<Text
250+
<Link
250251
pl="6"
251-
_light={{ color: "black" }}
252-
_dark={{ color: "coolGray.50" }}
252+
_text={{
253+
_light: {
254+
color: "black",
255+
},
256+
_dark: {
257+
color: "coolGray.50",
258+
},
259+
fontSize: "sm",
260+
}}
253261
m="auto"
254-
fontSize="sm"
262+
isUnderlined={false}
263+
href="https://madewithnativebase.com/"
264+
isExternal
255265
>
256266
MadeWithNativeBase
257-
</Text>
267+
</Link>
258268
</Box>
259269
</Box>
260270
</>

0 commit comments

Comments
 (0)