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 (