diff --git a/client/next.config.js b/client/next.config.js
index 561f5c71..5205e9bb 100644
--- a/client/next.config.js
+++ b/client/next.config.js
@@ -34,6 +34,16 @@ const nextConfig = {
     config.ignoreWarnings = warning;
     return config;
   },
+  async redirects() {
+    // Temporary redirect to explore page
+    return [
+      {
+        source: '/',
+        destination: '/explore',
+        permanent: true,
+      },
+    ]
+  },
 };
 
 export default nextConfig;