Files
ragflow/web/src/layouts/next.tsx
balibabu 54980337e4 Feat: Modify the style of the home page in bright mode #3221 (#3832)
### What problem does this PR solve?

Feat: Modify the style of the home page in bright mode #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2024-12-03 18:59:11 +08:00

12 lines
263 B
TypeScript

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