Files
ragflow/web/src/layouts/next.tsx
balibabu dc48c3863d Feat: Replace color variables according to design draft #3221 (#9305)
### What problem does this PR solve?

Feat: Replace color variables according to design draft #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-08-07 15:19:45 +08:00

12 lines
231 B
TypeScript

import { Outlet } from 'umi';
import { Header } from './next-header';
export default function NextLayout() {
return (
<section className="h-full flex flex-col">
<Header></Header>
<Outlet />
</section>
);
}