diff --git a/components/DeveloperLayout.tsx b/components/DeveloperLayout.tsx index 3c2b571..bfa9c22 100644 --- a/components/DeveloperLayout.tsx +++ b/components/DeveloperLayout.tsx @@ -1,36 +1,78 @@ import dynamic from 'next/dynamic' import Link from 'next/link' import { ReactNode } from 'react' -import Container from './Container' +import { DocsData } from '@types' + +const Container = dynamic(() => import('@components/Container')) +const Divider = dynamic(() => import('@components/Divider')) const SEO = dynamic(() => import('@components/SEO')) -const DeveloperLayout = ({ children, enabled }:DeveloperLayout):JSX.Element => { - return
+const DeveloperLayout = ({ children, enabled, docs, currentDoc }:DeveloperLayout):JSX.Element => { + return
-
-

-
    -
  • - -
  • -
  • - -
  • -
+
+
+

+
    +
  • + +
  • +
  • + +
  • +
+
-