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 MetamigoWrapperProps = { path: string; }; export const MetamigoWrapper: FC = ({ path }) => { const { publicRuntimeConfig: { linkURL }, } = getConfig(); const fullMetamigoURL = `${linkURL}/metamigo/${path}`; return ( Link Shell