ragflow/web/src/pages/home/index.tsx
balibabu 81f92d0689
feat: Add Datasets component to home page #3221 (#3508)
### What problem does this PR solve?

feat: Add Datasets component to home page #3221
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2024-11-20 11:14:21 +08:00

19 lines
431 B
TypeScript

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