Files
next-web/src/pages/_app.tsx
T

16 lines
353 B
TypeScript
Raw Normal View History

2025-06-30 15:54:10 -04:00
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;