Skip to content

Commit 7531d21

Browse files
committed
Added link to slack channel
1 parent 9ca0a93 commit 7531d21

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

package-lock.json

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"nextra": "^4.3.0-alpha.23",
1717
"nextra-theme-docs": "^4.3.0-alpha.23",
1818
"react": "^19.1.0",
19-
"react-dom": "^19.1.0"
19+
"react-dom": "^19.1.0",
20+
"react-icons": "^5.5.0"
2021
},
2122
"devDependencies": {
2223
"pagefind": "^1.3.0"

src/app/layout.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* eslint-env node */
22
import { Layout, Navbar, Footer } from 'nextra-theme-docs'
33
import { Head } from 'nextra/components'
4+
import { SiSlack } from 'react-icons/si';
45
import { getPageMap } from 'nextra/page-map'
56
import 'nextra-theme-docs/style.css'
67

@@ -31,8 +32,9 @@ export default async function RootLayout({ children }) {
3132
</div>
3233
}
3334

34-
projectLink="https://github.com/oxia-db/oxia"
35-
// chatLink="https://cloud-native.slack.com/archives/C09KFHURYF8"
35+
projectLink="https://github.com/oxia-db"
36+
chatLink="https://cloud-native.slack.com/archives/C09KFHURYF8"
37+
chatIcon={<SiSlack />}
3638
/>
3739
)
3840
const pageMap = await getPageMap()

0 commit comments

Comments
 (0)