diff --git a/src/pages/index.tsx b/src/pages/index.tsx index dfde307f62..d56c5e7417 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -7,7 +7,6 @@ import HomePage from '../ui/design-system/src/lib/Pages/HomePage'; // import { refreshTools } from '../cms/tools.server' import { externalLinks } from '../data/external-links'; import { contentNavigationListItems } from '../data/pages/home'; -import '../config/fcl'; const data = { discordUrl: externalLinks.discord, diff --git a/src/theme/Layout/index.tsx b/src/theme/Layout/index.tsx new file mode 100644 index 0000000000..947eaf5ff2 --- /dev/null +++ b/src/theme/Layout/index.tsx @@ -0,0 +1,15 @@ +import React from 'react'; +import Layout from '@theme-original/Layout'; +import type LayoutType from '@theme/Layout'; +import type {WrapperProps} from '@docusaurus/types'; +import '../../config/fcl'; + +type Props = WrapperProps; + +export default function LayoutWrapper(props: Props): JSX.Element { + return ( + <> + + + ); +}