// This layout component is the application layout

import Footer from '@/components/app/Footer';
import Navbar from '@/components/app/Navbar';
import { Box } from '@mui/material';
import React from 'react';

type Props = {
  children: React.ReactNode;
};

export default function MainLayout({ children }: Props) {
  return (
    <Box>
      <Navbar />

      <Box>
        {children}
      </Box>

      <Footer />
    </Box>
  );
}
