chore: handled multiple children rendering in the space layout (#4459)
This commit is contained in:
parent
751a4a3b21
commit
e1197f2b8f
5 changed files with 30 additions and 37 deletions
|
|
@ -1,22 +1,21 @@
|
|||
"use client";
|
||||
|
||||
import Image from "next/image";
|
||||
// assets
|
||||
import UserLoggedInImage from "public/user-logged-in.svg";
|
||||
|
||||
export default function InstanceNotFound() {
|
||||
return (
|
||||
<div>
|
||||
<div className="flex h-screen w-screen flex-col">
|
||||
<div className="grid h-full w-full place-items-center p-6">
|
||||
<div className="text-center">
|
||||
<div className="mx-auto grid h-52 w-52 place-items-center rounded-full bg-custom-background-80">
|
||||
<div className="h-32 w-32">
|
||||
<Image src={UserLoggedInImage} alt="User already logged in" />
|
||||
</div>
|
||||
<div className="flex h-screen w-screen flex-col">
|
||||
<div className="grid h-full w-full place-items-center p-6">
|
||||
<div className="text-center">
|
||||
<div className="mx-auto grid h-52 w-52 place-items-center rounded-full bg-custom-background-80">
|
||||
<div className="h-32 w-32">
|
||||
<Image src={UserLoggedInImage} alt="User already logged in" />
|
||||
</div>
|
||||
<h1 className="mt-12 text-3xl font-semibold">Not Found</h1>
|
||||
<p className="mt-4">Please enter the appropriate project URL to view the issue board.</p>
|
||||
</div>
|
||||
<h1 className="mt-12 text-3xl font-semibold">Not Found</h1>
|
||||
<p className="mt-4">Please enter the appropriate project URL to view the issue board.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue