Vercel/app/error.tsx
2025-02-17 17:52:18 -06:00

12 lines
209 B
TypeScript

'use client';
import HttpStatusPage from '@/components/HttpStatusPage';
export default function Error() {
return (
<HttpStatusPage status={500}>
Something went wrong
</HttpStatusPage>
);
}