-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: navigation * feat: add cli page * fix: minor fixes
- Loading branch information
Showing
13 changed files
with
224 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { DocsLayout } from "@/components/DocsLayout"; | ||
import Link from "next/link"; | ||
|
||
export default async function Page() { | ||
return ( | ||
<DocsLayout frontmatter={{ title: "Zuplo CLI" }} useRateSection={false}> | ||
<p> | ||
The Zuplo CLI, <code>zup</code>, provides convenient tooling for common | ||
tasks that you might want to automate. You can use it to deploy zups | ||
through CI/CD, create and update environment variables, manage your | ||
tunnels, and more! It is powered by the{" "} | ||
<Link | ||
href="https://dev.zuplo.com/docs" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="text-pink underline transition-colors hover:text-pink-hover" | ||
> | ||
Zuplo Developer API | ||
</Link>{" "} | ||
, which you can also call directly, if you want to create your own | ||
tooling. | ||
</p> | ||
</DocsLayout> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.