diff --git a/app/components/navigation/ConditionalFooter.tsx b/app/components/navigation/ConditionalFooter.tsx new file mode 100644 index 0000000..48461d5 --- /dev/null +++ b/app/components/navigation/ConditionalFooter.tsx @@ -0,0 +1,32 @@ +"use client"; + +import { memo } from "react"; +import { usePathname } from "next/navigation"; +import dynamic from "next/dynamic"; + +// Code split Footer - below the fold, can be lazy loaded +const Footer = dynamic(() => import("./Footer"), { + loading: () => ( +