Skip to content

Commit

Permalink
Create new docs navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
djfarrelly committed Nov 1, 2023
1 parent 42393cc commit b93f5a5
Show file tree
Hide file tree
Showing 10 changed files with 629 additions and 175 deletions.
10 changes: 9 additions & 1 deletion pages/docs/guides/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
import { Guides } from 'src/shared/Docs/Guides'
import { Resources } from 'src/shared/Docs/Resources'

# Guides

Dive into advanced uses for Inngest with our guides:

- [Trigger your code directly from Retool](/docs/guides/trigger-your-code-from-retool)
- [Trigger your code directly from Retool](/docs/guides/trigger-your-code-from-retool)


<Guides />

<Resources />
3 changes: 3 additions & 0 deletions pages/docs/platform/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Platform Guides

Learn how to use the Inngest platform
24 changes: 24 additions & 0 deletions pages/docs/reference/typescript/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import GithubIcon from "shared/Icons/Github"

# TypeScript SDK

## Installing

<CodeGroup>
```shell {{ title: "npm" }}
npm install inngest
```
```shell {{ title: "pnpm" }}
pnpm add inngest
```
```shell {{ title: "yarn" }}
yarn add inngest
```
</CodeGroup>

## Source code

Our TypeScript SDK is open source and available on Github: [<GithubIcon className="ml-2 inline-flex"/> inngest/inngest-js](https://github.com/inngest/inngest-js).


{/* example repos */}
1 change: 1 addition & 0 deletions shared/Docs/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export function Layout({
const metaDescription =
description || `Inngest documentation for ${preferredTitle}`;
const metaImage = getOpenGraphImageURL({ title: preferredTitle });

return (
<div className="dark:bg-slate-1000">
<MDXProvider components={mdxComponents}>
Expand Down
Loading

0 comments on commit b93f5a5

Please sign in to comment.