Add Prettier. Remove unused Button component

This commit is contained in:
Lennon Puldagrealy
2022-12-18 11:14:41 -08:00
parent 278189d015
commit ed47bcaa7a
21 changed files with 374 additions and 353 deletions
+7 -5
View File
@@ -1,17 +1,19 @@
import { Head, Html, Main, NextScript } from 'next/document'
import { Head, Html, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html className="h-full bg-gray-50 antialiased" lang="en">
<Head>
<link rel="shortcut icon" type="image/png" href="/images/logos/favicon.png" />
<link
rel="shortcut icon"
type="image/png"
href="/images/logos/favicon.png"
/>
</Head>
<body className="flex h-full flex-col">
<Main />
<NextScript />
</body>
</Html>
)
);
}