From d25bb407e35e4b6028933eabcdfcbd8464fc44a4 Mon Sep 17 00:00:00 2001
From: Xevion
Date: Tue, 5 Sep 2023 12:38:10 -0500
Subject: [PATCH] Add default title to all pages
---
src/pages/_document.tsx | 24 +++++++++++++-----------
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/src/pages/_document.tsx b/src/pages/_document.tsx
index b614f3e..e3e7f6b 100644
--- a/src/pages/_document.tsx
+++ b/src/pages/_document.tsx
@@ -1,13 +1,15 @@
-import {Html, Head, Main, NextScript} from 'next/document'
+import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
- return (
-
-
-
-
-
-
-
- )
-}
\ No newline at end of file
+ return (
+
+
+ bus-reminder
+
+
+
+
+
+
+ );
+}