loading, error and not found pages.
by default they all have min-h-svh height so they fill up the entire viewport.
Don't forget to add a contact us support link
You should add a NEXT_PUBLIC_CONTACT_US_LINK environment variable for the
contact us support link or hard code a link by changing the value of
fallbackPagesData.contactSupportLink.
Loading page
You need to replace the logo svg with your own. don't forget to pass the className prop to your Logo component.
Error page
in Dev mode, the error message will be the error message from the error object (props.error.message) and in production, it will be the default error message.
Not Found page
Installation
Usage
import { NotFoundPage } from "@/components/ui/FallbackPages";
export default function NotFoundPage() { return <NotFoundPage />; }