mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### 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)
This commit is contained in:
@ -1,14 +1,16 @@
|
||||
import { Applications } from './applications';
|
||||
import { Banner } from './banner';
|
||||
import { Datasets } from './datasets';
|
||||
import { HomeHeader } from './header';
|
||||
import NextBanner from './next-banner';
|
||||
|
||||
const Home = () => {
|
||||
return (
|
||||
<div>
|
||||
<div className="text-white mx-8">
|
||||
<HomeHeader></HomeHeader>
|
||||
<section>
|
||||
<Banner></Banner>
|
||||
<NextBanner></NextBanner>
|
||||
<Datasets></Datasets>
|
||||
<Applications></Applications>
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user