Initial commit

This commit is contained in:
skidoodle 2023-09-15 21:11:43 +02:00
parent e02071ead0
commit f7a8512076
13 changed files with 5027 additions and 4244 deletions

View file

@ -1,6 +1,22 @@
import { Inter } from 'next/font/google'
import { AppProps } from 'next/app'
import '@/styles/globals.css'
import type { AppProps } from 'next/app'
import Head from 'next/head'
const inter = Inter({
subsets: ['latin'],
variable: '--font-inter',
})
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
return (
<>
<Head>
<title>Érettségi kereső</title>
</Head>
<main className={`${inter.variable} font-sans`}>
<Component {...pageProps} />
</main>
</>
)
}