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)
This commit is contained in:
balibabu
2024-11-20 11:14:21 +08:00
committed by Yingfeng Zhang
parent 289034f36e
commit 8b4407a68c
12 changed files with 436 additions and 129 deletions

View File

@ -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>
);