mirror of
https://github.com/aljazceru/goose.git
synced 2026-02-07 23:54:26 +01:00
21 lines
584 B
JavaScript
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;
|