Skip to content

Commit 8b93a75

Browse files
authored
Merge pull request #106 from DaleStudy/fix/sponsors-button-external-link
ํ›„์›ํ•˜๊ธฐ ๋ฒ„ํŠผ hover ์Šคํƒ€์ผ๋กœ ์ธํ•˜์—ฌ link ํƒœ๊ทธ ์ œ๊ฑฐ
2 parents 8764781 + c3aea0a commit 8b93a75

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Box, Button, Icon, Link } from "daleui";
1+
import { Box, Button, Icon } from "daleui";
22
import { css } from "../../../../styled-system/css";
33
import { SPONSOR_URL } from "./links";
44

@@ -9,19 +9,17 @@ export function SponsorsButton() {
99
display: { base: "none", lg: "flex" },
1010
})}
1111
>
12-
<Link
12+
<a
1313
href={SPONSOR_URL}
14-
external
15-
underline={false}
16-
tone="neutral"
17-
size="lg"
1814
aria-label="ํ›„์›ํ•˜๊ธฐ"
15+
target="_blank"
16+
rel="noopener noreferrer"
1917
>
2018
<Button variant="outline">
2119
<Icon name="handHeart" />
2220
ํ›„์›ํ•˜๊ธฐ
2321
</Button>
24-
</Link>
22+
</a>
2523
</Box>
2624
);
2725
}

0 commit comments

Comments
ย (0)