mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-12-07 05:33:37 +01:00
16 lines
287 B
TypeScript
16 lines
287 B
TypeScript
import 'styles/globals.scss';
|
|
import Head from 'next/head';
|
|
|
|
import { AppProps } from 'next/app';
|
|
|
|
export default function ({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>albert</title>
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
);
|
|
}
|