+
- {/* Main Content Area */}
- {children}
+ {/* Main Content Area with offset for fixed sidebar */}
+ {children}
);
}
diff --git a/refer_landing_page/components/Footer.tsx b/refer_landing_page/components/Footer.tsx
index 023f57b..bbb5e3b 100644
--- a/refer_landing_page/components/Footer.tsx
+++ b/refer_landing_page/components/Footer.tsx
@@ -1,4 +1,7 @@
+"use client";
+
import Link from "next/link";
+import { usePathname } from "next/navigation";
import Marquee from "@/components/Marquee";
// CUSTOMIZATION HOOK: replace address / email placeholders & colophon below.
@@ -11,6 +14,11 @@ const links = [
];
export default function Footer() {
+ const pathname = usePathname();
+
+ if (pathname && pathname.startsWith("/console")) {
+ return null;
+ }
return (