mirror of
https://github.com/block/goose.git
synced 2026-07-03 14:15:10 +02:00
7449a96664
Signed-off-by: Michael Neale <michael.neale@gmail.com>
21 lines
596 B
JavaScript
21 lines
596 B
JavaScript
import Link from "@docusaurus/Link";
|
|
import { IconDownload } from "@site/src/components/icons/download";
|
|
|
|
const WindowsDesktopInstallButtons = () => {
|
|
return (
|
|
<div>
|
|
<p>Click one of the buttons below to download goose Desktop for Windows:</p>
|
|
<div className="pill-button">
|
|
<Link
|
|
className="button button--primary button--lg"
|
|
to="https://github.com/aaif-goose/goose/releases/download/stable/Goose-win32-x64.zip"
|
|
>
|
|
<IconDownload /> Windows
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default WindowsDesktopInstallButtons;
|