mirror of
https://github.com/skidoodle/albert.lol.git
synced 2026-05-01 20:54:13 +02:00
Initial commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import { Analytics } from '@vercel/analytics/react'
|
||||
import { ThemeProvider } from 'next-themes'
|
||||
import { Inter } from 'next/font/google'
|
||||
import type { AppProps } from 'next/app'
|
||||
import '@/styles/globals.scss'
|
||||
import Head from 'next/head'
|
||||
|
||||
const inter = Inter({
|
||||
subsets: ['latin'],
|
||||
variable: '--font-inter',
|
||||
})
|
||||
|
||||
export default function App({ Component, pageProps }: AppProps) {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>albert</title>
|
||||
</Head>
|
||||
<main className={`${inter.variable} font-sans`}>
|
||||
<ThemeProvider>
|
||||
<Component {...pageProps} />
|
||||
</ThemeProvider>
|
||||
</main>
|
||||
<Analytics />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user