Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/docs/content/bun/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ As said, there is no need for coding yet, we have created a [Github repository
This is the most bare-bones example of Bun app running in Zerops — as few libraries as possible,
just a simple endpoint with connect, read and write to a Zerops PostgreSQL database.

<DeployButton link="Bun" badgeWidth="200" />
<DeployButton link="bun" badgeWidth="200" />
</CustomCard>

1. Log in/sign up to [Zerops GUI ↗](https://app.zerops.io)
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/go/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ As said, there is no need for coding yet, we have created a [Github repository
This is the most bare-bones example of Go running in Zerops — as few libraries as possible,
just a simple endpoint with connect, read and write to a Zerops PostgreSQL database.

<DeployButton link="go" badgeWidth="200" />
<DeployButton link="golang" badgeWidth="200" />
</CustomCard>

1. Log in/sign up to [Zerops GUI ↗](https://app.zerops.io)
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/nodejs/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ As said, there is no need for coding yet, we have created a [Github repository
This is the most bare-bones example of Node.js app running in Zerops — as few libraries as possible,
just a simple endpoint with connect, read and write to a Zerops PostgreSQL database.

<DeployButton link="nodejs" badgeWidth="200" />
<DeployButton link="node-js" badgeWidth="200" />
</CustomCard>

1. Log in/sign up to [Zerops GUI ↗](https://app.zerops.io)
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/components/DeployButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface DeployButtonProps {

const DeployButton: React.FC<DeployButtonProps> = ({ link, badgeWidth }) => {
return (
<a href={`https://app.zerops.io/recipe/${link}`} target="_blank">
<a href={`https://app.zerops.io/recipe/?if=${link}`} target="_blank">
<svg className="duration-100" width={badgeWidth} viewBox="0 0 167 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_469_290)">
<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]
Expand Down
Loading