This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
old-shiloh-website/pages/_app.js

14 lines
286 B
JavaScript
Raw Normal View History

2023-04-18 00:05:35 +00:00
import '@/styles/globals.css'
2023-04-18 08:36:50 +00:00
import {Fira_Code} from '@next/font/google'
2023-04-18 00:05:35 +00:00
2023-04-18 08:36:50 +00:00
const firaCode = Fira_Code ({
subsets: ["latin"],
})
2023-04-18 00:05:35 +00:00
export default function App({ Component, pageProps }) {
2023-04-18 08:36:50 +00:00
return (
<main className={firaCode.className}>
<Component {...pageProps} />
</main>
)
2023-04-18 00:05:35 +00:00
}