Homepage first runthrough complete
This commit is contained in:
+4
-3
@@ -1,18 +1,19 @@
|
||||
import '../styles/globals.css';
|
||||
import type { AppProps } from 'next/app';
|
||||
import { Poppins } from 'next/font/google'
|
||||
import { Playfair_Display, Fraunces } 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'] })
|
||||
// const font = Playfair_Display({ weight: '500',subsets: ['latin'] })
|
||||
const font = Fraunces({ subsets: ['latin'] })
|
||||
|
||||
function MyApp({ Component, pageProps }: AppProps) {
|
||||
|
||||
|
||||
return (
|
||||
<>
|
||||
<main className={classNames("bg-britton-dark min-h-screen", poppins.className)}>
|
||||
<main className={classNames("bg-britton-dark min-h-screen", font.className)}>
|
||||
<Navbar />
|
||||
<Component {...pageProps} />
|
||||
<Footer />
|
||||
|
||||
Reference in New Issue
Block a user