diff --git a/website/src/pages/admin/index.tsx b/website/src/pages/admin/index.tsx index 34a24ff6..a4b77508 100644 --- a/website/src/pages/admin/index.tsx +++ b/website/src/pages/admin/index.tsx @@ -1,3 +1,4 @@ +import Head from "next/head"; import { AdminArea } from "src/components/AdminArea"; import { getAdminLayout } from "src/components/Layout"; import { UserTable } from "src/components/UserTable"; @@ -9,9 +10,14 @@ export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_ */ const AdminIndex = () => { return ( - - - + <> + + Open Assistant + + + + + ); };