16 lines
353 B
TypeScript
16 lines
353 B
TypeScript
|
|
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;
|