Added basic footer, few style changes to nav
This commit is contained in:
+10
-2
@@ -1,14 +1,22 @@
|
||||
import '../styles/globals.css';
|
||||
import type { AppProps } from 'next/app';
|
||||
import { Poppins } from 'next/font/google'
|
||||
import Navbar from '../components/Navbar';
|
||||
import Footer from '../components/Footer';
|
||||
import classNames from 'classnames';
|
||||
|
||||
const poppins = Poppins({ weight: '400',subsets: ['latin'] })
|
||||
|
||||
function MyApp({ Component, pageProps }: AppProps) {
|
||||
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="bg-britton-dark min-h-screen">
|
||||
<main className={classNames("bg-britton-dark min-h-screen", poppins.className)}>
|
||||
<Navbar />
|
||||
<Component {...pageProps} />
|
||||
</div>
|
||||
<Footer />
|
||||
</main>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user