2020-11-28 15:45:01 +00:00
|
|
|
import Head from 'next/head'
|
2022-03-23 03:50:06 +00:00
|
|
|
// import BasicTree from 'lib/MyFolderTree'
|
2022-03-17 08:42:57 +00:00
|
|
|
export const siteTitle = 'Digital Backroom - An Internet Archive'
|
2022-03-24 07:43:18 +00:00
|
|
|
import {Box} from '@mui/material'
|
2022-03-31 08:46:10 +00:00
|
|
|
export default function Layout({children}) {
|
2020-11-28 15:45:01 +00:00
|
|
|
|
2022-03-17 08:42:57 +00:00
|
|
|
return (
|
|
|
|
<div>
|
2022-03-24 07:43:18 +00:00
|
|
|
<main className= "theme-light">
|
|
|
|
{children}
|
|
|
|
</main>
|
2022-03-17 08:42:57 +00:00
|
|
|
</div>
|
|
|
|
)
|
2020-11-28 15:45:01 +00:00
|
|
|
}
|
|
|
|
|