add: Not found page

This commit is contained in:
AmirReza Jamali
2025-10-22 17:51:15 +03:30
parent 349f1137f7
commit f57373b476
10 changed files with 397 additions and 42 deletions
+15
View File
@@ -0,0 +1,15 @@
"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;