import { FC } from "react"; import getConfig from "next/config"; import Head from "next/head"; import { Grid } from "@mui/material"; import { Layout } from "components/Layout"; import Iframe from "react-iframe"; type LeafcutterWrapperProps = { path: string; }; export const LeafcutterWrapper: FC = ({ path }) => { const { publicRuntimeConfig: { leafcutterURL }, } = getConfig(); const fullLeafcutterURL = `${leafcutterURL}/${path}`; return ( Link Shell