mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
16 lines
362 B
TypeScript
16 lines
362 B
TypeScript
import { AppProps } from 'next/app';
|
|
import { Analytics } from '@vercel/analytics/react';
|
|
import Head from 'next/head';
|
|
import 'styles/globals.scss';
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>albert</title>
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
<Analytics />
|
|
</>
|
|
);
|
|
}
|