File tree Expand file tree Collapse file tree 3 files changed +54
-1
lines changed
Expand file tree Collapse file tree 3 files changed +54
-1
lines changed Original file line number Diff line number Diff 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/"
Original file line number Diff line number Diff 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 = { ( ) => {
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments