From 7edbbf3b4ad132d4ffb132dad0956c859632117e Mon Sep 17 00:00:00 2001 From: Tyler Matteo Date: Mon, 28 Oct 2024 10:30:08 -0400 Subject: [PATCH] Set title for site in root --- app/root.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/root.tsx b/app/root.tsx index 79ea1a3..349a753 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -123,7 +123,7 @@ export const loader = async ({ request }: LoaderFunctionArgs) => { function Document({ children, - title = "App title", + title = "Capital Projects", }: { children: React.ReactNode; title?: string;