diff --git a/src/components/OSDownloadCard.astro b/src/components/OSDownloadCard.astro new file mode 100644 index 0000000..a6fa9eb --- /dev/null +++ b/src/components/OSDownloadCard.astro @@ -0,0 +1,25 @@ +--- +interface Props { + title: string; + checksum: string; + downloadURL: string; +} + +const { title, checksum, downloadURL } = Astro.props as Props; +--- + +
+
{title}
+
+

Check sum

+
+ {checksum} +
+
+ Download +
diff --git a/src/pages/downloads/download-for-windows.astro b/src/pages/downloads/download-for-windows.astro new file mode 100644 index 0000000..baf6479 --- /dev/null +++ b/src/pages/downloads/download-for-windows.astro @@ -0,0 +1,43 @@ +--- +import OSDownloadCard from "../../components/OSDownloadCard.astro"; +import Layout from "../../layouts/Layout.astro"; +--- + + +
+
+

Download for Windows

+

Version 3.3.1

+
+
+
+
+

64-bit

+ + +
+
+

32-bit

+ + +
+
+
+
+