balibabu
Feat: Modify the style of the home page in bright mode #3221 (#3832)
8446e15
raw
history blame
263 Bytes
import { Outlet } from 'umi';
import { Header } from './next-header';
export default function NextLayout() {
return (
<section className="h-full flex flex-col text-colors-text-neutral-strong">
<Header></Header>
<Outlet />
</section>
);
}