Skip to content

Commit f5eb13f

Browse files
[WEB-5086] fix: instance setup screen asset #7914
1 parent c3e8ce8 commit f5eb13f

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

apps/web/core/components/instance/not-ready-view.tsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,26 @@ import Image from "next/image";
55
import Link from "next/link";
66
import { useTheme } from "next-themes";
77
import { GOD_MODE_URL } from "@plane/constants";
8+
import { PlaneLockup } from "@plane/propel/icons";
89
import { Button } from "@plane/propel/button";
910
// helpers
1011
// images
1112
// assets
1213
import PlaneBackgroundPatternDark from "@/public/auth/background-pattern-dark.svg";
1314
import PlaneBackgroundPattern from "@/public/auth/background-pattern.svg";
14-
import BlackHorizontalLogo from "@/public/plane-logos/black-horizontal-with-blue-logo.png";
15-
import WhiteHorizontalLogo from "@/public/plane-logos/white-horizontal-with-blue-logo.png";
1615
import PlaneTakeOffImage from "@/public/plane-takeoff.png";
1716

1817
export const InstanceNotReady: FC = () => {
1918
const { resolvedTheme } = useTheme();
2019
const patternBackground = resolvedTheme === "dark" ? PlaneBackgroundPatternDark : PlaneBackgroundPattern;
2120

22-
const logo = resolvedTheme === "light" ? BlackHorizontalLogo : WhiteHorizontalLogo;
23-
2421
return (
2522
<div className="relative">
2623
<div className="h-screen w-full overflow-hidden overflow-y-auto flex flex-col">
2724
<div className="container h-[110px] flex-shrink-0 mx-auto px-5 lg:px-0 flex items-center justify-between gap-5 z-50">
2825
<div className="flex items-center gap-x-2 py-10">
29-
<Link href={`/`} className="h-[30px] w-[133px]">
30-
<Image src={logo} alt="Plane logo" />
26+
<Link href={`/`}>
27+
<PlaneLockup className="h-7 w-auto text-custom-text-100" />
3128
</Link>
3229
</div>
3330
</div>

0 commit comments

Comments
 (0)