File size: 431 Bytes
3fa1285
e6a705f
3fa1285
1b2bfb1
 
 
 
3fa1285
1b2bfb1
 
e6a705f
3fa1285
 
1b2bfb1
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;