2026-01-27 13:54:22 +05:30
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
* See the LICENSE file for details.
|
|
|
|
|
*/
|
|
|
|
|
|
2024-07-22 16:01:46 +05:30
|
|
|
// images
|
2025-11-06 13:58:24 +05:30
|
|
|
import Image404 from "@/app/assets/404.svg?url";
|
2024-07-22 16:01:46 +05:30
|
|
|
|
2025-11-20 19:09:40 +07:00
|
|
|
export function PageNotFound() {
|
|
|
|
|
return (
|
2025-12-12 20:50:14 +05:30
|
|
|
<div className={`h-screen w-full overflow-hidden bg-surface-1`}>
|
2025-11-20 19:09:40 +07:00
|
|
|
<div className="grid h-full place-items-center p-4">
|
|
|
|
|
<div className="space-y-8 text-center">
|
|
|
|
|
<div className="relative mx-auto h-60 w-60 lg:h-80 lg:w-80">
|
2026-03-02 20:40:50 +05:30
|
|
|
<img src={Image404} alt="404- Page not found" className="h-full w-full object-contain" />
|
2025-11-20 19:09:40 +07:00
|
|
|
</div>
|
|
|
|
|
<div className="space-y-2">
|
2025-12-12 20:50:14 +05:30
|
|
|
<h3 className="text-16 font-semibold">Oops! Something went wrong.</h3>
|
|
|
|
|
<p className="text-13 text-secondary">
|
2025-11-20 19:09:40 +07:00
|
|
|
Sorry, the page you are looking for cannot be found. It may have been removed, had its name changed, or is
|
|
|
|
|
temporarily unavailable.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2024-07-22 16:01:46 +05:30
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-11-20 19:09:40 +07:00
|
|
|
);
|
|
|
|
|
}
|