Skip to content

Commit

Permalink
Merge branch 'main' into docs-revamp-sync-main
Browse files Browse the repository at this point in the history
  • Loading branch information
seyian-writer committed Jan 4, 2025
1 parent a72be21 commit 233cef3
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 184 deletions.
10 changes: 7 additions & 3 deletions components/AskCookbook/AskCookbook.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import React from "react";
import dynamic from "next/dynamic";
const BaseAskCookbook = dynamic(() => import("@cookbookdev/docsbot/react"), { ssr: false });

/** It's going to be exposed in HTTP requests anyway so it's fine to just hardcode it here */
interface BaseAskCookbookProps {
apiKey: string;
}

const BaseAskCookbook = dynamic<BaseAskCookbookProps>(() => import("@cookbookdev/docsbot/react"), { ssr: false });

const COOKBOOK_PUBLIC_API_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2NjdlZmMxYjcyYzRmNTI5YzMxODUyZmUiLCJpYXQiOjE3MTk1OTgxMDcsImV4cCI6MjAzNTE3NDEwN30.etICfDHEcewxP9QTajrS4ggral2IgaxY_rWAlK4kNiQ";

export const AskCookbook = () => {
return <BaseAskCookbook apiKey={COOKBOOK_PUBLIC_API_KEY} />;
return <BaseAskCookbook apiKey={COOKBOOK_PUBLIC_API_KEY} />;
};
10 changes: 0 additions & 10 deletions pages/_app.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,6 @@ import { ThemeProvider } from 'next-themes';
import { MantineWrapper, AskCookbook } from '../components';

export default function Nextra({ Component, pageProps }) {
<<<<<<< HEAD
return (
<ThemeProvider attribute="class">
<MantineWrapper>
<Component {...pageProps} />
</MantineWrapper>
</ThemeProvider>
);
=======
return (
<ThemeProvider attribute='class'>
<MantineWrapper>
Expand All @@ -23,5 +14,4 @@ export default function Nextra({ Component, pageProps }) {
</MantineWrapper>
</ThemeProvider>
);
>>>>>>> main
}
12 changes: 0 additions & 12 deletions pages/dev-advanced-concepts/_meta.json

This file was deleted.

4 changes: 0 additions & 4 deletions pages/dev-ecosystem-providers/oracles/_meta.json

This file was deleted.

58 changes: 0 additions & 58 deletions pages/dev-ecosystem-providers/oracles/api3.mdx

This file was deleted.

8 changes: 0 additions & 8 deletions pages/dev-ecosystem-providers/oracles/oracles.mdx

This file was deleted.

80 changes: 0 additions & 80 deletions pages/dev-token-standards.mdx

This file was deleted.

4 changes: 2 additions & 2 deletions pages/reference/providers/indexers/goldrush.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {ImageWithCaption} from '../../../components';
import {ImageWithCaption} from '../../../../components';

import imgWalletUiComponent from "../../../public/assets/ecosystem/resources/goldrush/wallet_ui_component.png";
import imgWalletUiComponent from "../../../../public/assets/ecosystem/resources/goldrush/wallet_ui_component.png";

# GoldRush - powered by Covalent

Expand Down
9 changes: 2 additions & 7 deletions pages/reference/providers/wallets.mdx
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<<<<<<< HEAD:pages/reference/providers/wallets.mdx
import { EcosystemDynamicSection } from "../../../components";
import { AppCardsGridCategory } from "../../../components";
=======
import { EcosystemDynamicSection } from '../../components';
import { AppCardsGridCategory } from '../../components';
>>>>>>> main:pages/dev-ecosystem-providers/wallets.mdx
import { EcosystemDynamicSection } from '../../../components';
import { AppCardsGridCategory } from '../../../components';

Wallets are essential for managing assets and interacting with the Sei blockchain. There are various types of wallets available, each offering different features and levels of security.

Expand Down

0 comments on commit 233cef3

Please sign in to comment.