mirror of
https://github.com/Xevion/bus-reminder.git
synced 2025-12-13 12:11:12 -06:00
Add default title to all pages
This commit is contained in:
@@ -1,13 +1,15 @@
|
|||||||
import {Html, Head, Main, NextScript} from 'next/document'
|
import { Html, Head, Main, NextScript } from 'next/document';
|
||||||
|
|
||||||
export default function Document() {
|
export default function Document() {
|
||||||
return (
|
return (
|
||||||
<Html className="h-full bg-gray-50">
|
<Html className="h-full bg-gray-50">
|
||||||
<Head/>
|
<Head>
|
||||||
<body className="h-full">
|
<title>bus-reminder</title>
|
||||||
<Main/>
|
</Head>
|
||||||
<NextScript/>
|
<body className="h-full">
|
||||||
</body>
|
<Main />
|
||||||
</Html>
|
<NextScript />
|
||||||
)
|
</body>
|
||||||
}
|
</Html>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user