File tree Expand file tree Collapse file tree
apps/web/core/components/instance Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,29 +5,26 @@ import Image from "next/image";
55import Link from "next/link" ;
66import { useTheme } from "next-themes" ;
77import { GOD_MODE_URL } from "@plane/constants" ;
8+ import { PlaneLockup } from "@plane/propel/icons" ;
89import { Button } from "@plane/propel/button" ;
910// helpers
1011// images
1112// assets
1213import PlaneBackgroundPatternDark from "@/public/auth/background-pattern-dark.svg" ;
1314import 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" ;
1615import PlaneTakeOffImage from "@/public/plane-takeoff.png" ;
1716
1817export 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 >
You can’t perform that action at this time.
0 commit comments