@@ -7,15 +7,26 @@ const DownloadButton = () => {
7
7
8
8
if ( os === 'mac' ) {
9
9
return (
10
- < a
11
- className = { styles . root }
12
- href = "https://releases.hyper.is/download/mac"
13
- target = "_blank"
14
- rel = "noopener noreferrer"
15
- >
16
- < Apple size = { 16 } />
17
- < strong > Download Hyper</ strong >
18
- </ a >
10
+ < div className = { styles . doubleWrap } >
11
+ < a
12
+ className = { styles . root }
13
+ href = "https://releases.hyper.is/download/mac"
14
+ target = "_blank"
15
+ rel = "noopener noreferrer"
16
+ >
17
+ < Apple size = { 16 } />
18
+ < strong > Download for Intel Chip</ strong >
19
+ </ a >
20
+ < a
21
+ className = { styles . root }
22
+ href = "https://releases.hyper.is/download/mac_arm64"
23
+ target = "_blank"
24
+ rel = "noopener noreferrer"
25
+ >
26
+ < Apple size = { 16 } />
27
+ < strong > Download for Apple Chip</ strong >
28
+ </ a >
29
+ </ div >
19
30
)
20
31
} else if ( os === 'windows' ) {
21
32
return (
@@ -26,7 +37,7 @@ const DownloadButton = () => {
26
37
rel = "noopener noreferrer"
27
38
>
28
39
< Windows size = { 16 } />
29
- < strong > Download Hyper </ strong >
40
+ < strong > Download</ strong >
30
41
</ a >
31
42
)
32
43
} else if ( os === 'fedora' ) {
@@ -38,7 +49,7 @@ const DownloadButton = () => {
38
49
rel = "noopener noreferrer"
39
50
>
40
51
< Linux size = { 16 } />
41
- < strong > Download Hyper </ strong >
52
+ < strong > Download</ strong >
42
53
</ a >
43
54
)
44
55
} else if ( os === 'ubuntu' ) {
@@ -50,7 +61,7 @@ const DownloadButton = () => {
50
61
rel = "noopener noreferrer"
51
62
>
52
63
< Linux size = { 16 } />
53
- < strong > Download Hyper </ strong >
64
+ < strong > Download</ strong >
54
65
</ a >
55
66
)
56
67
} else if ( os === 'linux' ) {
@@ -62,14 +73,14 @@ const DownloadButton = () => {
62
73
rel = "noopener noreferrer"
63
74
>
64
75
< Linux />
65
- < strong > Download Hyper </ strong >
76
+ < strong > Download</ strong >
66
77
</ a >
67
78
)
68
79
} else {
69
80
return (
70
81
< a href = "/#installation" className = { styles . root } >
71
82
< Download height = { 12 } width = { 16 } />
72
- < strong > Download Hyper </ strong >
83
+ < strong > Download</ strong >
73
84
</ a >
74
85
)
75
86
}
0 commit comments