XeNote/components/layout.js
Tuan Cao c56bacc34b Put Side bar to both Index and post pages
Make nav bar appear on the left side.
2022-03-24 14:43:18 +07:00

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>
)
}