Files
ragflow/web/src/pages/home/index.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

18 lines
349 B
TypeScript

import { Applications } from './applications';
import { Banner } from './banner';
import { Datasets } from './datasets';
const Home = () => {
return (
<div className="mx-8">
<section>
<Banner></Banner>
<Datasets></Datasets>
<Applications></Applications>
</section>
</div>
);
};
export default Home;