Skip to content

Commit c46e6de

Browse files
jansaidlJan Saidl
andauthored
Fix deploy btn (#334)
Co-authored-by: Jan Saidl <saidl@vshosting.cz>
1 parent f63dbe2 commit c46e6de

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

β€Žapps/docs/content/bun/overview.mdxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ As said, there is no need for coding yet, we have created a [Github repository
1919
This is the most bare-bones example of Bun app running in Zerops β€” as few libraries as possible,
2020
just a simple endpoint with connect, read and write to a Zerops PostgreSQL database.
2121

22-
<DeployButton link="Bun" badgeWidth="200" />
22+
<DeployButton link="bun" badgeWidth="200" />
2323
</CustomCard>
2424

2525
1. Log in/sign up to [Zerops GUI β†—](https://app.zerops.io)

β€Žapps/docs/content/go/overview.mdxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ As said, there is no need for coding yet, we have created a [Github repository
1919
This is the most bare-bones example of Go running in Zerops β€” as few libraries as possible,
2020
just a simple endpoint with connect, read and write to a Zerops PostgreSQL database.
2121

22-
<DeployButton link="go" badgeWidth="200" />
22+
<DeployButton link="golang" badgeWidth="200" />
2323
</CustomCard>
2424

2525
1. Log in/sign up to [Zerops GUI β†—](https://app.zerops.io)

β€Žapps/docs/content/nodejs/overview.mdxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ As said, there is no need for coding yet, we have created a [Github repository
1919
This is the most bare-bones example of Node.js app running in Zerops β€” as few libraries as possible,
2020
just a simple endpoint with connect, read and write to a Zerops PostgreSQL database.
2121

22-
<DeployButton link="nodejs" badgeWidth="200" />
22+
<DeployButton link="node-js" badgeWidth="200" />
2323
</CustomCard>
2424

2525
1. Log in/sign up to [Zerops GUI β†—](https://app.zerops.io)

β€Žapps/docs/src/components/DeployButton/index.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ interface DeployButtonProps {
77

88
const DeployButton: React.FC<DeployButtonProps> = ({ link, badgeWidth }) => {
99
return (
10-
<a href={`https://app.zerops.io/recipe/${link}`} target="_blank">
10+
<a href={`https://app.zerops.io/recipe/?if=${link}`} target="_blank">
1111
<svg className="duration-100" width={badgeWidth} viewBox="0 0 167 30" fill="none" xmlns="http://www.w3.org/2000/svg">
1212
<g clip-path="url(#clip0_469_290)">
1313
<path d="M151.364 0H15C6.71573 0 0 6.71573 0 15C0 23.2843 6.71573 30 15 30H151.364C159.648 30 166.364 23.2843 166.364 15C166.364 6.71573 159.648 0 151.364 0Z" fill="#7CC6BB" className="hover:fill-[#74C0B5]

0 commit comments

Comments
Β (0)