* chore: update next images with html default images * chore: sync related changes * Update apps/admin/core/components/instance/failure.tsx Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update apps/space/app/not-found.tsx Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update apps/space/core/components/issues/issue-layouts/error.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update apps/space/core/components/ui/not-found.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * chore: replace classname styles in space * fix: copoilot suggestions * fix: copilot suggestions * chore: format files --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
22 lines
836 B
TypeScript
22 lines
836 B
TypeScript
"use client";
|
|
|
|
// assets
|
|
import SomethingWentWrongImage from "@/app/assets/something-went-wrong.svg?url";
|
|
|
|
const NotFound = () => (
|
|
<div className="h-screen w-screen grid place-items-center">
|
|
<div className="text-center">
|
|
<div className="mx-auto size-32 md:size-52 grid place-items-center rounded-full bg-custom-background-80">
|
|
<div className="size-16 md:size-32 grid place-items-center">
|
|
<img src={SomethingWentWrongImage} alt="Something went wrong" width={128} height={128} />
|
|
</div>
|
|
</div>
|
|
<h1 className="mt-8 md:mt-12 text-xl md:text-3xl font-semibold">That didn{"'"}t work</h1>
|
|
<p className="mt-2 md:mt-4 text-sm md:text-base">
|
|
Check the URL you are entering in the browser{"'"}s address bar and try again.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
export default NotFound;
|