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

24 lines
597 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 { Poppins } from 'next/font/google'
2025-06-30 15:54:10 -04:00
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';
import classNames from 'classnames';
const poppins = Poppins({ weight: '400',subsets: ['latin'] })
2025-06-30 15:54:10 -04:00
function MyApp({ Component, pageProps }: AppProps) {
2025-06-30 15:54:10 -04:00
return (
<>
<main className={classNames("bg-britton-dark min-h-screen", poppins.className)}>
2025-06-30 15:54:10 -04:00
<Navbar />
<Component {...pageProps} />
<Footer />
</main>
2025-06-30 15:54:10 -04:00
</>
);
}
export default MyApp;