chore(website): remove old website

This commit is contained in:
Elian Doran
2025-09-27 01:42:15 +03:00
parent 3cf0ec5740
commit a11797fe6e
77 changed files with 76 additions and 904 deletions

View File

@@ -0,0 +1,17 @@
import { getRecommendedDownload } from "../download-helper";
import "./DownloadButton.css";
interface DownloadButtonProps {
big?: boolean;
}
const { architecture, platform, url } = getRecommendedDownload();
export default function DownloadButton({ big }: DownloadButtonProps) {
return (
<a className={`download-button ${big ? "big" : ""}`} href={url}>
Download now{" "}
<span class="platform">{platform} {architecture}</span>
</a>
)
}