mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
17 lines
377 B
TypeScript
17 lines
377 B
TypeScript
import { Analytics } from '@vercel/analytics/react'
|
|
import Layout from '../components/layout'
|
|
|
|
import '../styles/index.css'
|
|
import '../styles/gfm.css'
|
|
|
|
export default function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<div className="flex flex-col min-h-screen">
|
|
<Layout>
|
|
<Component {...pageProps} />
|
|
<Analytics />
|
|
</Layout>
|
|
</div>
|
|
)
|
|
}
|