File tree 3 files changed +18
-15
lines changed
3 files changed +18
-15
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,15 @@ function DownloadButton() {
28
28
return (
29
29
< a
30
30
onClick = { ( ) => handleButtonClick ( href ) }
31
- className = "text-white font-semibold hover:underline "
31
+ 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 "
32
32
href = { href }
33
33
>
34
- Download without Muse Hub
34
+ < div className = "flex items-center gap-4" >
35
+ < span className = "icon icon-import" > </ span >
36
+ < p className = "" >
37
+ < span className = "font-semibold" > Download Audacity { audacityReleases . version } </ span > < br />
38
+ < span className = "font-light" > Installs with no extras</ span > </ p >
39
+ </ div >
35
40
</ a >
36
41
) ;
37
42
}
Original file line number Diff line number Diff line change @@ -45,16 +45,14 @@ function DownloadMuseHubButton() {
45
45
return (
46
46
< a
47
47
onClick = { ( ) => handleButtonClick ( href ) }
48
- 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"
48
+ className = "flex py-3 px-4 gap-3 rounded-md items -center bg-white hover:bg-gray-200 active:bg-yellow-500 w-fit"
49
49
href = { href }
50
50
>
51
51
< span className = "icon icon-import" > </ span >
52
52
< p >
53
- < span className = "font-semibold" >
54
- Download Audacity { audacityReleases . version }
55
- </ span >
56
- < br />
57
- { false && < span className = "font-light text-s" > via MuseHub</ span > }
53
+ < span className = "font-semibold" >
54
+ Audacity + free effects</ span > < br />
55
+ < span className = "font-light text-s" > via MuseHub Installer</ span >
58
56
</ p >
59
57
</ a >
60
58
) ;
Original file line number Diff line number Diff line change @@ -9,25 +9,25 @@ import DownloadMuseHubButton from "../button/DownloadMuseHubButton";
9
9
class =" grid grid-cols-12 max-w-screen-lg mx-6 sm:mx-16 xl:mx-auto py-8 md:py-16 sm:py-12 gap-6 md:gap-0"
10
10
>
11
11
<div
12
- class =" col-span-12 mx-2 md:mx-0 text-center md:text-left md:col-span-5 flex flex-col gap-4 md:gap-8 justify-center"
12
+ class =" col-span-12 mx-2 md:mx-0 text-center md:text-left md:col-span-7 flex flex-col gap-4 md:gap-8 justify-center"
13
13
>
14
14
<h1 class =" leading-tight mt-2 text-white" >
15
15
Audacity is the world's most popular audio editing and recording app
16
16
</h1 >
17
17
18
- <div class =" flex flex-col md:w-fit gap-4 items-center md:items-start" >
19
- <DownloadMuseHubButton client:load />
20
- <noscript >
21
- <DownloadMuseHubButton client:load />
22
- </noscript >
18
+ <div class =" flex md:w-fit gap-4 items-center md:items-start" >
23
19
<DownloadButton client:load />
24
20
<noscript >
25
21
<DownloadButton client:load />
26
22
</noscript >
23
+ <DownloadMuseHubButton client:load />
24
+ <noscript >
25
+ <DownloadMuseHubButton client:load />
26
+ </noscript >
27
27
</div >
28
28
</div >
29
29
<div
30
- class =" col-span-12 md:col-start-7 md:col-span-7 flex items-center justify-center mx-4"
30
+ class =" col-span-12 md:col-start-8 md:col-span-6 flex items-center justify-center mx-4"
31
31
>
32
32
<img
33
33
alt =" A laptop showing the Audacity application"
You can’t perform that action at this time.
0 commit comments