Skip to content

Commit

Permalink
feat: Ask Cookbook integration
Browse files Browse the repository at this point in the history
comments for ask cookbook
  • Loading branch information
ClockRide committed Jul 15, 2024
1 parent 6b80cf0 commit fb374d0
Show file tree
Hide file tree
Showing 3 changed files with 1,657 additions and 11 deletions.
1 change: 1 addition & 0 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"typecheck": "tsc"
},
"dependencies": {
"@cookbookdev/docsbot": "^4.21.1",
"@docusaurus/core": "^3.0.1",
"@docusaurus/preset-classic": "^3.0.1",
"@docusaurus/theme-live-codeblock": "^3.0.1",
Expand Down
17 changes: 17 additions & 0 deletions docs/src/theme/SearchBar/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from 'react';
import SearchBar from '@theme-original/SearchBar';
import AskCookbook from '@cookbookdev/docsbot/react';

// This is a public key, so it's safe to hardcode it.
// To get a new one or request access to the internal portal (If you work for the Web3JS), contact the cookbook.dev team at tyler@cookbook.dev.
const ASK_COOKBOOK_PUBLIC_KEY =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2NjdjNzc3YzNmOGY3Mzk2MGYzZGNiOGYiLCJpYXQiOjE3MTk0MzMwODQsImV4cCI6MjAzNTAwOTA4NH0.OXWVNJMxMuEGG1oWetW_a9005r8hmQ6RbF19wbrpTlk';

export default function SearchBarWrapper(props) {
return (
<>
<SearchBar {...props} />
<AskCookbook apiKey={ASK_COOKBOOK_PUBLIC_KEY} />
</>
);
}
Loading

0 comments on commit fb374d0

Please sign in to comment.