|
|
@@ -1,6 +1,7 @@
|
|
|
import {
|
|
|
Links,
|
|
|
Meta,
|
|
|
+ MetaFunction,
|
|
|
Outlet,
|
|
|
Scripts,
|
|
|
ScrollRestoration,
|
|
|
@@ -49,6 +50,11 @@ export function Layout({ children }: { children: React.ReactNode }) {
|
|
|
);
|
|
|
}
|
|
|
|
|
|
+export const meta: MetaFunction = () => [
|
|
|
+ { title: "OpenHands" },
|
|
|
+ { name: "description", content: "Let's Start Building!" },
|
|
|
+];
|
|
|
+
|
|
|
export const clientLoader = async () => {
|
|
|
let token = localStorage.getItem("token");
|
|
|
const ghToken = localStorage.getItem("ghToken");
|