"use client"; import { FC } from "react"; import { Grid } from "@mui/material"; import Iframe from "react-iframe"; type LeafcutterWrapperProps = { path: string; }; export const LeafcutterWrapper: FC = ({ path }) => { const leafcutterURL = `https://lc.digiresilience.org/${path}`; return (