diff --git a/app/[[...mdxPath]]/layout.tsx b/app/[[...mdxPath]]/layout.tsx
index cc56603..9ddc6e0 100644
--- a/app/[[...mdxPath]]/layout.tsx
+++ b/app/[[...mdxPath]]/layout.tsx
@@ -15,7 +15,7 @@ const siteData = {
description: 'Svix makes sending webhooks easy and reliable. Documentation for sending, receiving, and operating webhooks with Svix.',
productionUrl: 'https://docs.svix.com',
repo: 'https://github.com/svix/svix-webhooks',
- docsSource: 'https://github.com/svix/svix-docs',
+ docsSource: 'https://github.com/svix/svix-docs/tree/main',
} as const
export const metadata = {
diff --git a/content/get-help.mdx b/content/get-help.mdx
index 4279bb7..3d424b3 100644
--- a/content/get-help.mdx
+++ b/content/get-help.mdx
@@ -6,6 +6,6 @@ title: Get Help & Chat With Us
We love chatting with developers!
-If anything is unclear, you have some feedback, or you would just like to chat please get in touch! You can join the community on [our Slack](https://www.svix.com/slack/) or reach out via email at contact@svix.com. We are also happy to jump on a call, so just drop us a line.
+If anything is unclear, you have some feedback, or you would just like to chat please get in touch! You can join the community on Slack or reach out via email at contact@svix.com. We are also happy to jump on a call, so just drop us a line.
-[](https://www.svix.com/slack/)
+
diff --git a/mdx-components.jsx b/mdx-components.jsx
index 63be93a..91278ac 100644
--- a/mdx-components.jsx
+++ b/mdx-components.jsx
@@ -2,6 +2,7 @@ import { Callout } from 'nextra/components'
import { useMDXComponents as getThemeComponents } from 'nextra-theme-docs'
import { CodeTabs } from './src/components/CodeTabs'
import { CLITabs } from './src/components/CLITabs'
+import { SlackJoinLink } from './src/components/SlackJoinLink'
import ConnectorLogo from './src/components/ConnectorLogo'
import clsx from 'clsx'
import Image from 'next/image'
@@ -28,5 +29,6 @@ export function useMDXComponents(components) {
CLITabs,
TabItem: Tabs.Tab,
ConnectorLogo,
+ SlackJoinLink,
}
}
diff --git a/public/img/slack.svg b/public/img/slack.svg
new file mode 100644
index 0000000..0d8aefc
--- /dev/null
+++ b/public/img/slack.svg
@@ -0,0 +1 @@
+
diff --git a/src/components/SlackJoinLink.tsx b/src/components/SlackJoinLink.tsx
new file mode 100644
index 0000000..0c7769e
--- /dev/null
+++ b/src/components/SlackJoinLink.tsx
@@ -0,0 +1,15 @@
+import { Cards } from 'nextra/components'
+import Image from 'next/image'
+
+export function SlackJoinLink() {
+ return (
+
+ }
+ className="w-fit"
+ />
+
+ )
+}