Added basic footer, few style changes to nav

This commit is contained in:
Jason Jordan
2025-07-01 16:56:24 -04:00
parent 30cd59658d
commit 129af6b414
7 changed files with 64 additions and 20 deletions
+10 -2
View File
@@ -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>
</>
);
}