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. +

+
+ ); +}