balibabu
Feat: Modify the style of the home page in bright mode #3221 (#3832)
8446e15
raw
history blame
349 Bytes
import { Applications } from './applications';
import { Banner } from './banner';
import { Datasets } from './datasets';
const Home = () => {
return (
<div className="mx-8">
<section>
<Banner></Banner>
<Datasets></Datasets>
<Applications></Applications>
</section>
</div>
);
};
export default Home;