File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,15 @@ function DownloadButton() {
30
30
return (
31
31
< a
32
32
onClick = { ( ) => handleButtonClick ( href ) }
33
- className = "text-white font-semibold hover:underline"
33
+ className = "text-white font-semibold hover:underline border-white border-2 py-3 px-4 rounded-md "
34
34
href = { href }
35
35
>
36
- Download without Muse Hub
36
+ < div className = "flex items-center gap-4" >
37
+ < span className = "icon icon-import" > </ span >
38
+ < p className = "text-white" >
39
+ < span > Download Audacity { audacityReleases . version } </ span > < br />
40
+ < span className = "font-light" > Installs with no extras</ span > </ p >
41
+ </ div >
37
42
</ a >
38
43
) ;
39
44
}
Original file line number Diff line number Diff line change @@ -43,14 +43,14 @@ function DownloadMuseHubButton() {
43
43
return (
44
44
< a
45
45
onClick = { ( ) => handleButtonClick ( href ) }
46
- className = "flex py-3 px-4 gap-3 rounded-md justify -center bg-yellow-300 hover:bg-yellow-400 active:bg-yellow-500 w-fit"
46
+ className = "flex py-3 px-4 gap-3 rounded-md items -center bg-yellow-300 hover:bg-yellow-400 active:bg-yellow-500 w-fit"
47
47
href = { href }
48
48
>
49
49
< span className = "icon icon-import" > </ span >
50
50
< p >
51
51
< span className = "font-semibold" >
52
- Download Audacity { audacityReleases . version } </ span > < br />
53
- { false && < span className = "font-light text-s" > via MuseHub</ span > }
52
+ Audacity + free effects & samples </ span > < br />
53
+ < span className = "font-light text-s" > via MuseHub Installer </ span >
54
54
</ p >
55
55
</ a >
56
56
) ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import DownloadMuseHubButton from "../button/DownloadMuseHubButton";
11
11
<div
12
12
class =" mx-auto"
13
13
>
14
- <h1 class =" leading-tight m-2 text-white text-balance" >
14
+ <h1 class =" leading-tight m-2 text-white text-balance text-center p-8 " >
15
15
Audacity is the world's most popular audio editing and recording app
16
16
</h1 >
17
17
You can’t perform that action at this time.
0 commit comments