A clean and modern 404 Not Found page built with React and Tailwind CSS.
import { NotFound } from "@/components/ui/pagenotfound.tsx"; // ✅ import your 404 page const DemoOne = () => { return ( <div className="flex w-full h-screen justify-center items-center"> <NotFound /> {/* ✅ use it here */} </div> ); }; export { DemoOne };