diff --git a/src/components/Layout/index.tsx b/src/components/Layout/index.tsx index 1e5f22444..529861fde 100644 --- a/src/components/Layout/index.tsx +++ b/src/components/Layout/index.tsx @@ -4,9 +4,11 @@ import UserDropdown from './UserDropdown'; import Sidebar from './Sidebar'; import Notifications from './Notifications'; import LanguagePicker from './LanguagePicker'; +import { useRouter } from 'next/router'; const Layout: React.FC = ({ children }) => { const [isSidebarOpen, setSidebarOpen] = useState(false); + const router = useRouter(); return (
@@ -49,6 +51,43 @@ const Layout: React.FC = ({ children }) => { >
+ {router.pathname === '/' && ( +
+
+
+ + + +
+
+

+ This is ALPHA software. Almost everything is bound to be + nearly broken or unstable. Please report issues to the + Overseerr Github! +

+

+ + Github → + +

+
+
+
+ )} {children}