Path: blob/main/components/dashboard/src/cell-disabled/DisabledCell.tsx
2506 views
/**1* Copyright (c) 2024 Gitpod GmbH. All rights reserved.2* Licensed under the GNU Affero General Public License (AGPL).3* See License.AGPL.txt in the project root for license information.4*/56import { Heading2 } from "@podkit/typography/Headings";7import { TextMuted } from "@podkit/typography/TextMuted";8import { useTheme } from "../theme-context";910import cubicleImg from "../images/cubicle.webp";11import cubicleDarkImg from "../images/cubicle-dark.webp";12import cubicleImg2x from "../images/[email protected]";13import cubicleDarkImg2x from "../images/[email protected]";1415export const DisabledCell = () => {16const { isDark } = useTheme();1718return (19<div className="p-0 h-[100dvh] flex flex-col items-center justify-center">20<section className="flex flex-col justify-center items-center text-center">21<img22src={isDark ? cubicleDarkImg : cubicleImg}23srcSet={`${isDark ? cubicleDarkImg : cubicleImg} 1x, ${24isDark ? cubicleDarkImg2x : cubicleImg2x25} 2x`}26alt="cubical illustration"27width="240"28height="251"29/>30<Heading2 className="my-4">Thank you for evaluating Gitpod</Heading2>31<TextMuted>32This evaluation instance is now stopped. <br />33Please contact our team to move to next steps.34</TextMuted>35</section>36</div>37);38};394041