Design A front page

This commit is contained in:
Jason Jordan
2025-06-30 15:54:10 -04:00
parent f971a75ad5
commit 3d85feb4b3
27 changed files with 480 additions and 70 deletions
+16
View File
@@ -0,0 +1,16 @@
import '../styles/globals.css';
import type { AppProps } from 'next/app';
import Navbar from '../components/Navbar';
function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<div className="bg-britton-dark min-h-screen">
<Navbar />
<Component {...pageProps} />
</div>
</>
);
}
export default MyApp;