import { Grid, Container, Typography, Paper } from "@mui/material"; import { MDXProvider } from "@mdx-js/react"; import Image from "next/image"; const components = { h1: (props) => , h2: (props) => , h3: (props) => , h4: (props) => , h5: (props) => , h6: (props) => , code: (props) => ( ), }; export default function PostLayout({ children, meta }) { return ( {meta.title} {meta.description}
{children}
); }