"use client"; import { FC } from "react"; import getConfig from "next/config"; import { Grid } from "@mui/material"; import Iframe from "react-iframe"; type MetamigoWrapperProps = { path: string; }; export const MetamigoWrapper: FC = ({ path }) => { const { publicRuntimeConfig: { linkURL }, } = getConfig(); const fullMetamigoURL = `${linkURL}/metamigo/${path}`; return (