Files
ragflow/web/src/pages/home/index.tsx
balibabu 552475dd5c Feat: Adjust the style of the home page #3221 (#7405)
### What problem does this PR solve?

Feat: Adjust the style of the home page #3321

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-04-29 15:32:50 +08:00

18 lines
361 B
TypeScript

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