[catalog][m]: added Stats component.

This commit is contained in:
anuveyatsu
2021-08-13 18:55:46 +06:00
parent 71ecf16728
commit b0ee6b4c71
4 changed files with 74 additions and 4 deletions

View File

@@ -8,6 +8,7 @@ import useTranslation from 'next-translate/useTranslation';
import NavBar from '../components/home/Nav';
import Hero from '../components/home/Hero';
import Footer from '../components/home/Footer';
import Stats from '../components/home/Stats';
const Home: React.FC<{ locale: any; locales: any }> = ({
locale,
@@ -23,6 +24,7 @@ const Home: React.FC<{ locale: any; locales: any }> = ({
</Head>
<NavBar />
<Hero />
<Stats />
<RecentDataset />
<Footer />
</div>