hotfix: add a link to download stable for extensions site (#823)

This commit is contained in:
Michael Neale
2025-01-28 10:11:56 +11:00
committed by GitHub
parent 3dc4bbb569
commit 939b200895

View File

@@ -8,6 +8,8 @@ export const Header = () => {
const location = useLocation();
const { hash, pathname, search } = location;
const stableDownload = "https://github.com/block/goose/releases/download/stable/Goose.zip";
return (
<div className="bg-bgApp container mx-auto border-borderSubtle py-16">
<div className="h-full flex justify-between items-center">
@@ -16,12 +18,10 @@ export const Header = () => {
</NavLink>
<div className="w-auto items-center flex">
<Button>
<IconDownload />
{/* {pathname === "/" ? ( */}
<span className="ml-2">Download Goose for desktop</span>
{/* ) : (
<></>
)} */}
<a href={stableDownload}>
<IconDownload /></a>
<span className="ml-2"><a href={stableDownload}>Download Goose for desktop</a></span>
</Button>
<ThemeToggle className="ml-4" />
</div>