mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### 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)
18 lines
361 B
TypeScript
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;
|