diff --git a/apps/site/src/app/(home)/page.tsx b/apps/site/src/app/(home)/page.tsx
index 19671700..452f8f1a 100644
--- a/apps/site/src/app/(home)/page.tsx
+++ b/apps/site/src/app/(home)/page.tsx
@@ -1,5 +1,7 @@
import { Landing } from "./sections";
export default function Home() {
- return ;
+ // Show landing section only if still in maintenance,
+ // otherwise show the rest of the sections
+ return process.env.MAINTENANCE_MODE_HOME ? : ;
}