c56bacc34b
Make nav bar appear on the left side.
16 lines
367 B
JavaScript
16 lines
367 B
JavaScript
import Head from 'next/head'
|
|
// import BasicTree from 'lib/MyFolderTree'
|
|
export const siteTitle = 'Digital Backroom - An Internet Archive'
|
|
import {Box} from '@mui/material'
|
|
export default function Layout({children, home}) {
|
|
|
|
return (
|
|
<div>
|
|
<main className= "theme-light">
|
|
{children}
|
|
</main>
|
|
</div>
|
|
)
|
|
}
|
|
|