[catalog][s]: added simple footer element.

This commit is contained in:
anuveyatsu
2021-08-13 15:51:45 +06:00
parent d32e11ae6a
commit 1fe0f71029
2 changed files with 64 additions and 0 deletions

View File

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