diff --git a/components/DeveloperLayout.tsx b/components/DeveloperLayout.tsx new file mode 100644 index 0000000..2716f57 --- /dev/null +++ b/components/DeveloperLayout.tsx @@ -0,0 +1,45 @@ +import dynamic from 'next/dynamic' +import Link from 'next/link' +import { ReactNode, useState } from 'react' +import Container from './Container' + +const SEO = dynamic(() => import('@components/SEO')) + +const DeveloperLayout = ({ children, enabled }:DeveloperLayout):JSX.Element => { + return
+ +
+
    +
  • + +
  • +
  • + +
  • +
+
+ +
+ + {children} + +
+
+} + +interface DeveloperLayout { + children: ReactNode + enabled: 'applications' | 'docs' +} + +export default DeveloperLayout \ No newline at end of file