Use common Layout component, place common title in Layout

This commit is contained in:
2023-09-05 14:46:04 -05:00
parent ac23bf774a
commit 3d4e82bc45
4 changed files with 22 additions and 15 deletions

View File

@@ -3,9 +3,7 @@ import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html className="h-full bg-gray-50">
<Head>
<title>bus-reminder</title>
</Head>
<Head />
<body className="h-full">
<Main />
<NextScript />