Update download for windows page content

This commit is contained in:
Dilson's Pickles
2023-02-13 11:48:32 +00:00
parent bb879ad990
commit 441d86fc47
2 changed files with 63 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
---
interface Props {
title: string;
url: string;
}
const { title, url } = Astro.props as Props;
---
<div class="border border-1 rounded-sm">
<a href={url}
><div class="p-8">
<h5 class="font-bold text-lg">{title}</h5>
</div>
</a>
</div>

View File

@@ -1,5 +1,6 @@
---
import OSDownloadCard from "../../components/OSDownloadCard.astro";
import PaginationButton from "../../components/PaginationButton.astro";
import Layout from "../../layouts/Layout.astro";
---
@@ -8,8 +9,8 @@ import Layout from "../../layouts/Layout.astro";
<div class="mx-8 lg:mx-16 mt-40">
<h2 class="text-4xl font-semibold">Download for Windows</h2>
<p class="text-base mb-16">Version 3.3.1</p>
<div class="grid grid-cols-12 grid-flow-row auto-rows-max">
<div class="col-span-12 md:col-span-10 lg:col-span-8">
<div class="grid grid-cols-12 grid-flow-row auto-rows-max gap-x-6">
<div class="col-span-12 lg:col-span-8 mb-20">
<div class="mb-20">
<h4 class="font-bold text-lg mb-4">64-bit</h4>
<OSDownloadCard
@@ -23,7 +24,7 @@ import Layout from "../../layouts/Layout.astro";
checksum="82762426cd3256d30d065b3f99d2f4e20e5ad1944cf25ed4c094ad2690c9b730"
/>
</div>
<div class="mb-20">
<div class="mb-16">
<h4 class="font-bold text-lg mb-4">32-bit</h4>
<OSDownloadCard
title="Audacity 3.2.4 32 bit installer"
@@ -36,7 +37,50 @@ import Layout from "../../layouts/Layout.astro";
checksum="82762426cd3256d30d065b3f99d2f4e20e5ad1944cf25ed4c094ad2690c9b730"
/>
</div>
<div class="mb-20">
<h4 class="font-bold text-lg mb-4">
Running an older version of Windows?
</h4><p class="text-base">
Audacity 3.1.0 is believed to work correctly on Windows 7, 8.1 and
Vista, though please note that 7, 8 and Vista obsolete and no
longer supported by Microsoft. More information about Audacity on
Vista HERE.<br />
<br />
For Windows 98, ME and 2000, also for XP without the final Service
Pack see Legacy Windows Downloads.
</p>
</div>
<div>
<h4 class="font-bold text-lg mb-4">
Looking for an older version for Audacity?
</h4><p class="text-base">
Audacity 3.1.0 is believed to work correctly on Windows 7, 8.1 and
Vista, though please note that 7, 8 and Vista obsolete and no
longer supported by Microsoft. More information about Audacity on
Vista HERE.<br />
<br />
OldFoss hosts the current Audacity version and all previous versions
from 2.1.2 onwards. Google Code hosts selected previous versions up
to and including Audacity 2.0.5.
</p>
</div>
</div>
<div class="mb-20 lg:mb-0 col-span-12 lg:col-span-4">
<div
class="lg:p-4 lg:mt-11 lg:bg-gray-50 lg:rounded-sm lg:border lg:border-gray-100"
>
<h5 class="font-bold text-lg mb-2 lg:text-base">
Optional downloads
</h5>
<ul>
<li><a href="#">Plugins</a></li>
<li><a href="#">FFmpeg import/export library</a></li>
<li><a href="#">Audacity manual</a></li>
</ul>
</div>
</div>
<div class="col-span-6"><PaginationButton title="Download for Mac" url="/downloads/download-for-mac" /></div>
<div class="col-span-6"><PaginationButton title="Download for Linux" url="/downloads/download-for-linux" /></div>
</div>
</div>
</main>