Rename Header to NavBar and add it to the bottom too

This commit is contained in:
2022-07-03 21:39:29 +03:00
parent d16f34a1ea
commit 136b775c2b
7 changed files with 15 additions and 24 deletions

View File

@@ -2,8 +2,6 @@ import type { NextPage } from 'next';
import Performers from './performers';
import Program from './program';
import Info from './info';
import Archive from './archive';
import Safety from './safety';
import styles from '../styles/Index.module.scss';
import Lead from './components/Lead';
@@ -15,8 +13,6 @@ const Home: NextPage = () => {
<Performers />
<Program />
<Info />
<Archive />
<Safety />
</div>
);
};