mirror of
https://github.com/smyalygames/anthonyberg-website.git
synced 2025-05-18 22:24:43 +02:00
22 lines
479 B
TypeScript
22 lines
479 B
TypeScript
import 'nextra-theme-blog/style.css'
|
|
import type { AppProps } from 'next/app'
|
|
import Head from 'next/head'
|
|
import '../styles/main.css'
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<link
|
|
rel="preload"
|
|
href="/fonts/Inter-roman.latin.var.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossOrigin="anonymous"
|
|
/>
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
)
|
|
}
|