Skip to content

Commit

Permalink
Added error page
Browse files Browse the repository at this point in the history
  • Loading branch information
atrincas committed Dec 2, 2024
1 parent 8e5bccf commit f628907
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions client/src/app/error.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"use client";

import NoData from "@/containers/no-data";

import CloudOff from "@/components/icons/cloud-off";

export default function ErrorPage() {
return (
<div className="h-full min-h-screen">
<NoData
className="h-full"
icon={<CloudOff />}
description="Something went wrong, please check back soon."
/>
</div>
);
}

0 comments on commit f628907

Please sign in to comment.