diff options
Diffstat (limited to 'app/root.tsx')
| -rw-r--r-- | app/root.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/root.tsx b/app/root.tsx index 9fc6636..dd55df0 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -25,14 +25,15 @@ export const links: Route.LinksFunction = () => [ export function Layout({ children }: { children: React.ReactNode }) { return ( - <html lang="en"> + <html lang="ja" className="dark"> <head> <meta charSet="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> + <title>東京ライブハウス</title> <Meta /> <Links /> </head> - <body> + <body className="bg-gray-950 text-gray-100 antialiased"> {children} <ScrollRestoration /> <Scripts /> |
