Skip to content

Commit 5ce4001

Browse files
Adding new integrations into docs Fixes ENG-830 (#11)
* GW Security Policy explanation * Added integrations * Addresssed comments * removed docs subsections for integrations --------- Co-authored-by: jack <[email protected]>
1 parent 4c6de32 commit 5ce4001

31 files changed

+3042
-2250
lines changed

next.config.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

next.config.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import nextra from 'nextra'
2+
3+
const withNextra = nextra({
4+
theme: 'nextra-theme-docs',
5+
themeConfig: './theme.config.jsx'
6+
})
7+
8+
export default withNextra()

package-lock.json

Lines changed: 2844 additions & 2159 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@
1818
},
1919
"homepage": "https://docs.oneleet.com",
2020
"dependencies": {
21-
"next": "^14.1.1",
22-
"nextra": "^2.13.2",
23-
"nextra-theme-docs": "^2.13.2",
24-
"react": "^18.2.0",
25-
"react-dom": "^18.2.0"
21+
"next": "^15.0.2",
22+
"nextra": "^3.2.1",
23+
"nextra-theme-docs": "^3.2.1",
24+
"react": "^18.3.1",
25+
"react-dom": "^18.3.1",
26+
"sharp": "^0.33.5"
2627
},
2728
"devDependencies": {
28-
"@types/node": "18.11.10",
29-
"typescript": "^4.9.3"
29+
"@types/node": "22.9.0",
30+
"typescript": "^5.6.3"
3031
}
3132
}

pages/_app.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import type { AppProps } from "next/app";
2+
3+
export default function MyApp({ Component, pageProps }: AppProps) {
4+
return <Component {...pageProps} />;
5+
}

pages/_meta.json renamed to pages/_meta.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
export default {
22
"index": "Introduction",
33
"integrations": "Integrations",
44
"oneleet-agent": "Oneleet Agent",

pages/guides/1password-setup.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
import { Steps, Tabs, Tab } from "nextra/components";
1+
import { Steps, Tabs } from "nextra/components";
22

33
# 1Password Business Setup
44

55
## Set up a 1Password Business Account
66

77
<Steps>
88
### Create 1Password Business Account
9+
910
Head to [https://start.1password.com/sign-up/plan](https://start.1password.com/sign-up/plan) and select **Business Account**
1011
![](/1password/1Password.png)
1112

@@ -25,7 +26,6 @@ Generate a secret key and tore this in a safe place as it's the only way to acce
2526

2627
You can invite your team members now, or wait until the end of the guide.
2728
![](/1password/1Password-4.png)
28-
2929
</Steps>
3030

3131
## Create 1Password Security Policies
@@ -83,7 +83,7 @@ First, go to your invitations page by clicking "Invitations" on your right navba
8383
![](/1password/1Password-19.png)
8484

8585
<Tabs items={["Invite by Email", "Invite by Sign-Up Link"]}>
86-
<Tab>
86+
<Tabs.Tab>
8787
First, click on "Invite By email"
8888

8989
![](/1password/1Password-20.png)
@@ -92,8 +92,8 @@ First, go to your invitations page by clicking "Invitations" on your right navba
9292

9393
![](/1password/1Password-21.png)
9494

95-
</Tab>
96-
<Tab>
95+
</Tabs.Tab>
96+
<Tabs.Tab>
9797
The invite by Sign-Up Link method is the most convinient of all, you'll be allowed to setup some domains your team uses and just share a link! To do so, click in "View Link and Options" under the Sign-Up Link card
9898

9999
![](/1password/1Password-22.png)
@@ -102,7 +102,7 @@ First, go to your invitations page by clicking "Invitations" on your right navba
102102

103103
![](/1password/1Password-23.png)
104104

105-
</Tab>
105+
</Tabs.Tab>
106106
</Tabs>
107107

108108
Once your teams have registered with their emails, their accounts need to be confirmed by an owner or an administrator of the 1password team. This can be done from the same invitations screen, and is as simple as clicking on the confirm button next to the users email!
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
{
1+
export default {
22
"1password-setup": "1Password Business Setup",
33
"jumpcloud-setup": "JumpCloud MDM Setup",
4-
"hardening-kubernetes": "Hardening Kubernetes"
5-
}
4+
"hardening-kubernetes": "Hardening Kubernetes",
5+
};

pages/integrations/_meta.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

pages/integrations/_meta.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export default {
2+
aws: "AWS",
3+
azure: "Azure",
4+
cloudflare: "Cloudflare",
5+
gitlab: "Gitlab",
6+
github: "GitHub",
7+
"google-cloud-platform": "Google Cloud Platform",
8+
"google-workspace": "Google Workspace",
9+
jumpcloud: "Jumpcloud",
10+
mezmo: "Mezmo",
11+
microsoft365: "Microsoft 365",
12+
supabase: "Supabase",
13+
vercel: "Vercel",
14+
};

0 commit comments

Comments
 (0)