Files
goose/documentation/src/components/WindowsDesktopInstallButtons.js

21 lines
584 B
JavaScript

import Link from "@docusaurus/Link";
import { IconDownload } from "@site/src/components/icons/download";
const WindowsDesktopInstallButtons = () => {
return (
<div>
<p>To download Goose Desktop for Windows, click the button below:</p>
<div className="pill-button">
<Link
className="button button--primary button--lg"
to="https://github.com/block/goose/releases/download/stable/Goose-win32-x64.zip"
>
<IconDownload /> Windows
</Link>
</div>
</div>
);
};
export default WindowsDesktopInstallButtons;