Skip to content

Commit 0a33658

Browse files
committed
Add Netlify link to footer
1 parent 6cbab00 commit 0a33658

File tree

1 file changed

+41
-22
lines changed

1 file changed

+41
-22
lines changed

src/components/footer/Footer.astro

Lines changed: 41 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,15 @@ import "../../styles/fonts.css";
2222
<li>
2323
<a
2424
href="https://support.audacityteam.org"
25-
aria-label="External link to Help">Help</a>
25+
aria-label="External link to Help">Help</a
26+
>
2627
</li>
2728
<li><a href="/FAQ" aria-label="Link to FAQ">FAQ</a></li>
2829
<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>
30+
<li>
31+
<a href="/cloud-saving" aria-label="Link to Cloud Saving"
32+
>Cloud Saving</a>
33+
</li>
3034
<li>
3135
<a
3236
href="https://forum.audacityteam.org/"
@@ -45,7 +49,8 @@ import "../../styles/fonts.css";
4549
<a
4650
href="https://audio.com/"
4751
aria-label="External link to Audio.com"
48-
target="_blank">Audio.com</a>
52+
target="_blank">Audio.com</a
53+
>
4954
</li>
5055
</ul>
5156
</div>
@@ -60,9 +65,18 @@ import "../../styles/fonts.css";
6065
</li>
6166
<li><a href="/download/mac" aria-label="Link to macOS">macOS</a></li>
6267
<li><a href="/download/linux" aria-label="Link to Linux">Linux</a></li>
63-
<li id="beta-link"><a href="/beta" aria-label="Link to beta page">Beta</a></li>
64-
<li><a href="https://musehub.com/?utm_source=audacity&utm_medium=footer&utm_campaign=musehub" aia-label="External link to MuseHub">MuseHub</a></li>
65-
<li><a href="/download/openvino" aria-label="Link to AI plugins">AI plugins</a></li>
68+
<li id="beta-link">
69+
<a href="/beta" aria-label="Link to beta page">Beta</a>
70+
</li>
71+
<li>
72+
<a
73+
href="https://musehub.com/?utm_source=audacity&utm_medium=footer&utm_campaign=musehub"
74+
aia-label="External link to MuseHub">MuseHub</a>
75+
</li>
76+
<li>
77+
<a href="/download/openvino" aria-label="Link to AI plugins"
78+
>AI plugins</a>
79+
</li>
6680
</ul>
6781
</div>
6882

@@ -75,46 +89,54 @@ import "../../styles/fonts.css";
7589
<a
7690
href="https://www.facebook.com/Audacity/"
7791
aria-label="External link to Facebook"
78-
target="_blank">Facebook</a>
92+
target="_blank">Facebook</a
93+
>
7994
</li>
8095
<li>
8196
<a
8297
href="https://github.com/audacity"
8398
aria-label="External link to github"
84-
target="_blank">Github</a>
99+
target="_blank">Github</a
100+
>
85101
</li>
86102
<li>
87103
<a
88104
href="https://discord.gg/audacity"
89105
aria-label="External link to discord"
90-
target="_blank">Discord</a>
106+
target="_blank">Discord</a
107+
>
91108
</li>
92109
<li>
93110
<a
94111
href="https://www.youtube.com/c/audacity"
95112
aria-label="External link to Youtube"
96-
target="_blank">YouTube</a>
113+
target="_blank">YouTube</a
114+
>
97115
</li>
98116
</ul>
99117
</div>
100118

101119
<div class="col-start-2 col-span-10 mt-4 lg:mt-12">
102120
<div class="border-t-[1px] border-gray-300 pt-4">
103121
<p class="copyright text-center">
104-
Copyright &copy; <span id="copyright"></span> | Muse Group &
105-
contributors. Website content licensed <a
106-
href="https://creativecommons.org/licenses/by/4.0/"
107-
class="underline hover:text-blue-700"
122+
Copyright &copy; <span id="copyright"></span> | Muse Group & contributors.
123+
Website content licensed <a
124+
href="https://creativecommons.org/licenses/by/4.0/"
125+
class="underline hover:text-blue-700"
108126
rel="license"
109127
target="_blank"
110-
aria-label="CC-by 4.0">CC-by 4.0</a>.
111-
Audacity® software is licensed under the terms of the
112-
GNU General Public License, Version 3. Further information about the
113-
software license, distribution and acceptable use can be found <a
128+
aria-label="CC-by 4.0">CC-by 4.0</a
129+
>. Audacity® software is licensed under the terms of the GNU General
130+
Public License, Version 3. Further information about the software
131+
license, distribution and acceptable use can be found <a
114132
class="underline hover:text-blue-700"
115133
href="https://github.com/audacity/audacity/blob/master/LICENSE.txt"
116134
target="_blank"
117135
aria-label="in the source code">in the source code</a
136+
>. This site is hosted on <a
137+
href="https://www.netlify.com/"
138+
target="_blank"
139+
class="underline hover:text-blue-700">Netlify</a
118140
>.
119141
</p>
120142
</div>
@@ -124,8 +146,5 @@ import "../../styles/fonts.css";
124146

125147
<script>
126148
const elem = document.querySelector("#copyright");
127-
if (elem)
128-
elem.textContent = new Date()
129-
.getFullYear()
130-
.toString();
149+
if (elem) elem.textContent = new Date().getFullYear().toString();
131150
</script>

0 commit comments

Comments
 (0)