import { Button, H3 } from "@/components/Shared/UI"; import clearLocalStorage from "@/helpers/clearLocalStorage"; interface SiteErrorProps { message?: string; } const SiteError = ({ message }: SiteErrorProps) => { const clearLocalData = () => { clearLocalStorage(); setTimeout(() => location.reload(), 200); }; return (

Looks like something went wrong!

We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.
{message && (
{message}
)}
); }; export default SiteError;