import * as React from "react" import { Link as GatsbyLink } from "gatsby" import { AppBar, Container, CssBaseline, Grid, Link, ThemeProvider, Toolbar } from "@mui/material" import NavMenu from "./nav-menu" import theme from "./theme" import Footer from "./footer" const Layout = ({ location, title, children }) => { // const rootPath = `${__PATH_PREFIX__}/` // const isRootPath = location.pathname === rootPath // let header // if (isRootPath) { // header = ( //

// {title} //

// ) // } else { // header = ( // // {title} // // ) // } return ( <> {title}
{children}