From 6fd4f56c3e7ba63796dba8e66430ef8be6d888cc Mon Sep 17 00:00:00 2001 From: lavanyagarg112 Date: Wed, 16 Jul 2025 23:51:09 +0800 Subject: [PATCH] add dummy page --- app/AuthClientProvider.tsx | 4 +++- app/contact/page.tsx | 11 +++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 app/contact/page.tsx diff --git a/app/AuthClientProvider.tsx b/app/AuthClientProvider.tsx index a016362..dd3a117 100644 --- a/app/AuthClientProvider.tsx +++ b/app/AuthClientProvider.tsx @@ -19,7 +19,9 @@ export default function AuthClientProvider({ pathname === "/" || pathname === "/auth" || pathname === "/terms" || - pathname === "/privacy" + pathname === "/privacy" || + pathname === "/forgot-password" || + pathname === "/contact" ) return; if (!user.isLoggedIn) { diff --git a/app/contact/page.tsx b/app/contact/page.tsx new file mode 100644 index 0000000..8d057f5 --- /dev/null +++ b/app/contact/page.tsx @@ -0,0 +1,11 @@ +export default function ContactPage() { + return ( +
+ This page is under construction. Please check back later for contact + details. +

+ If you have any questions, please reach out to support. +

+
+ ); +}