Skip to content

Commit ff95c5e

Browse files
authored
Merge branch 'main' into post-download-noindex
2 parents 3586ad8 + f3fc040 commit ff95c5e

File tree

5 files changed

+57
-4
lines changed

5 files changed

+57
-4
lines changed

src/components/footer/Footer.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import "../../styles/fonts.css";
2626
</li>
2727
<li><a href="/FAQ" aria-label="Link to FAQ">FAQ</a></li>
2828
<li><a href="/blog" aria-label="Link to Blog">Blog</a></li>
29+
<li><a href="/cloud-saving" aria-label="Link to Cloud Saving">Cloud Saving</a></li>
2930
<li>
3031
<a
3132
href="https://forum.audacityteam.org/"

src/components/navigation/NavigationReact.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function NavigationReact(props) {
8585
</div>
8686

8787
<div className="hidden lg:flex flex-1 justify-end items-center gap-3">
88-
<p className="text-base">Audacity Cloud saving</p>
88+
<p className="text-base hover:text-blue-700"><a href="/cloud-saving">Audacity Cloud saving</a></p>
8989
<a href="https://audio.com/auth/sign-up?mtm_campaign=audacityteamorg&mtm_content=Nav_button" target="_blank">
9090
<button
9191
onClick={() => {

src/pages/cloud-saving.astro

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
import BaseLayout from "../layouts/BaseLayout.astro";
3+
import JoinAudioDotComButton from "../components/button/JoinAudioDotComButton";
4+
import "../styles/icons.css";
5+
import FeatureCard from "../components/card/FeatureCard";
6+
---
7+
8+
<BaseLayout
9+
title="Audacity Cloud Saving Platform"
10+
description="Never lose your work in Audacity with seamless sync to Cloud Storage"
11+
>
12+
<section class="mx-8 max-w-screen-md xl:max-w-screen-lg md:mx-auto">
13+
<div class="py-8 sm:py-12 flex flex-col items-center">
14+
<div class="text-center">
15+
<h1>
16+
Sign up to Audacity's cloud saving platform and access your projects
17+
from anywhere!
18+
</h1>
19+
<div class="mt-12">
20+
<JoinAudioDotComButton
21+
client:load
22+
href="https://audio.com/auth/sign-up?mtm_campaign=audacityteamorg&mtm_content=cloudsaving"
23+
matomoEventName="Cloudsaving page"
24+
large
25+
/>
26+
</div>
27+
</div>
28+
</div>
29+
</section>
30+
<div class="grid grid-cols-6 sm:grid-cols-12 w-full gap-4 p-16">
31+
<FeatureCard
32+
icon="icon-cloud"
33+
title="Secure cloud storage"
34+
description="Keep your projects safe and accessible with cloud storage. Access your work anywhere and never lose a file."
35+
/>
36+
<FeatureCard
37+
icon="icon-note"
38+
title="Share your creations"
39+
description="Upload and share your audio from Audacity with just a few clicks. Quick, easy, and built for creators."
40+
/>
41+
<FeatureCard
42+
icon="icon-pen"
43+
title="Transcribe your audio"
44+
description="Free AI-powered transcription for your podcasts or voice overs, delivering fast and precise text for effortless editing."
45+
/>
46+
<FeatureCard
47+
icon="icon-globe"
48+
title="Explore new sounds"
49+
description="Collaborate with other creators, find new inspiration, and discover sounds to enhance and elevate your projects."
50+
/>
51+
</div>
52+
</BaseLayout>

src/pages/download/mac.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const { mac, version } = audacityReleases;
66
---
77

88
<DownloadPageLayout
9-
title="Audacity ® | Download for Mac OS"
9+
title="Audacity ® | Download for macOS"
1010
description="Download Audacity for macOS and OS X"
1111
OS="macOS"
1212
version={version}
@@ -18,7 +18,7 @@ const { mac, version } = audacityReleases;
1818
<h3>About these downloads</h3>
1919
<h4 class="mt-4 md:mt-8">System requirements</h4>
2020
<p class="mt-2">
21-
Audacity is tested on macOS 12 & 13, and may also work on any OS X version
21+
Audacity is tested on macOS 14 & 15, and may also work on any OS X version
2222
released after and including OS X 10.9 Mavericks. Both Intel (x86_64) and
2323
Apple Silicon (ARM 64) versions are available, as well as a universal
2424
binary. There are no specific CPU or GPU requirements.</p>

src/pages/post-download.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "../styles/icons.css";
55
import logo from "../assets/img/promo/audacity-audiocom-promo.png";
66
---
77

8-
<BaseLayout title="Audacity ® | post-download" index="noindex">
8+
<BaseLayout title="Audacity Cloud Saving Platform" description="Sync & save projects in Audacity Cloud. Secure, automatic, and always accessible." index="noindex">
99
<section>
1010
<div class="text-center bg-blue-700 py-4">
1111
<p class="text-lg text-white">Thank you for downloading Audacity!</p>

0 commit comments

Comments
 (0)