Files
tm-landing/app/_components/FooterForm.tsx
T
2025-10-22 17:51:15 +03:30

16 lines
350 B
TypeScript

"use client";
import { usePathname } from "next/navigation";
import ContactUs from "../_contact-us/page";
const FooterForm = () => {
const pathName = usePathname();
if (pathName !== "/") return null;
return (
<div className="absolute w-full -top-[420px] md:-top-72 z-10">
<ContactUs />
</div>
);
};
export default FooterForm;