"use client"; import { Typography } from "@mui/material"; import { ReactNode } from "react"; interface LayoutProps { children: ReactNode; } export const Layout = (props: LayoutProps) => { return (