diff --git a/website/src/pages/index.tsx b/website/src/pages/index.tsx index dba1b8dfa19f..0b1dc28b24e5 100644 --- a/website/src/pages/index.tsx +++ b/website/src/pages/index.tsx @@ -1,23 +1,8 @@ import React from "react"; -import clsx from "clsx"; -import Layout from "@theme/Layout"; -import BrowserOnly from "@docusaurus/BrowserOnly"; +import { Redirect } from "@docusaurus/router"; function Home() { - return ( - - - {() => { - window.location.href = "/docs"; - }} - - - - authentik Documentation - - - - ); + return ; } export default Home;