diff --git a/website/src/templates/index.js b/website/src/templates/index.js
index 0b48f6e93..1f0ccf1f5 100644
--- a/website/src/templates/index.js
+++ b/website/src/templates/index.js
@@ -1,12 +1,8 @@
import React from 'react'
import PropTypes from 'prop-types'
-import { MDXProvider } from '@mdx-js/tag'
-import { withMDXScope } from 'gatsby-mdx/context'
import useOnlineStatus from '@rehooks/online-status'
import classNames from 'classnames'
-import MDXRenderer from './mdx-renderer'
-
// Templates
import Docs from './docs'
import Universe from './universe'
@@ -73,13 +69,6 @@ class Layout extends React.Component {
}
static propTypes = {
- data: PropTypes.shape({
- mdx: PropTypes.shape({
- code: PropTypes.shape({
- body: PropTypes.string.isRequired,
- }).isRequired,
- }),
- }).isRequired,
scope: PropTypes.object.isRequired,
pageContext: PropTypes.shape({
title: PropTypes.string,
@@ -106,18 +95,11 @@ class Layout extends React.Component {
}
render() {
- const { data, pageContext, location, children } = this.props
- const { file, site = {} } = data || {}
- const mdx = file ? file.childMdx : null
+ const { pageContext, location, children } = this.props
const { title, section, sectionTitle, teaser, theme = 'blue', searchExclude } = pageContext
const uiTheme = nightly ? 'nightly' : legacy ? 'legacy' : theme
const bodyClass = classNames(`theme-${uiTheme}`, { 'search-exclude': !!searchExclude })
const isDocs = ['usage', 'models', 'api', 'styleguide'].includes(section)
- const content = !mdx ? null : (
-