Files
tkmind_go/documentation/src/components/MacDesktopInstallButtons.js
T
2026-04-07 07:18:04 +00:00

27 lines
868 B
JavaScript

import Link from "@docusaurus/Link";
import { IconDownload } from "@site/src/components/icons/download";
const DesktopInstallButtons = () => {
return (
<div>
<p>Click one of the buttons below to download goose Desktop for macOS:</p>
<div className="pill-button" style={{ display: 'flex', gap: '0.5rem', flexWrap: 'wrap' }}>
<Link
className="button button--primary button--lg"
to="https://github.com/aaif-goose/goose/releases/download/stable/Goose.zip"
>
<IconDownload /> macOS Silicon
</Link>
<Link
className="button button--primary button--lg"
to="https://github.com/aaif-goose/goose/releases/download/stable/Goose_intel_mac.zip"
>
<IconDownload /> macOS Intel
</Link>
</div>
</div>
);
};
export default DesktopInstallButtons;