-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1840f6b
commit fc6dba8
Showing
2 changed files
with
36 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import type {LoaderFunctionArgs} from '@shopify/remix-oxygen'; | ||
|
||
export async function loader({request}: LoaderFunctionArgs) { | ||
// throw new Response(`${new URL(request.url).pathname} not found`, { | ||
// status: 507, | ||
// }); | ||
return null; | ||
} | ||
|
||
export default function ErrorPage() { | ||
return ( | ||
<div | ||
className="flex flex-col justify-center w-full h-full" | ||
style={{fontSize: '1rem'}} | ||
> | ||
<>/Error 777/</> | ||
<br /> | ||
<>Physical storage could not be read.</> | ||
<br /> | ||
<span className="mt-2 text-sm"> | ||
Unmounting /dev/storage/vhs0: FAILURE | ||
</span> | ||
<span className="mb-2 text-sm"> | ||
{'>'} trace: {'{'}read_err, vhs_track, recalibrate{'}'} | ||
</span> | ||
<>[!] Please eject the cassette and power cycle the device</> | ||
{/* <p>[!] CONTACT: Support at 1-777-PUAS for further assistance.</p> */} | ||
</div> | ||
); | ||
} |