Prettier and a new readme

This commit is contained in:
skidoodle 2022-08-26 21:27:32 +02:00
parent 146b35d1d3
commit f21d8f8086
16 changed files with 352 additions and 2594 deletions

View file

@ -1,15 +1,15 @@
import 'styles/globals.scss'
import Head from 'next/head'
import "styles/globals.scss";
import Head from "next/head";
import { AppProps } from 'next/app'
import { AppProps } from "next/app";
export default function({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<title>albert</title>
</Head>
<Component {...pageProps} />
</>
)
}
export default function ({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<title>albert</title>
</Head>
<Component {...pageProps} />
</>
);
}