Path: blob/main/components/dashboard/src/dedicated-setup/GettingStartedStep.tsx
2506 views
/**1* Copyright (c) 2023 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 { FC } from "react";7import { Button } from "@podkit/buttons/Button";8import { Heading1, Subheading } from "../components/typography/headings";9import { SetupLayout } from "./SetupLayout";1011type Props = {12onComplete: () => void;13progressCurrent?: number;14progressTotal?: number;15};16export const GettingStartedStep: FC<Props> = ({ onComplete, progressCurrent, progressTotal }) => {17return (18<SetupLayout progressCurrent={progressCurrent} progressTotal={progressTotal}>19<Heading1>Let's get started</Heading1>20<Subheading>21Spin up fresh cloud development environments for each task, fully automated, in seconds.22</Subheading>2324<div className="mt-6">25<Button className="w-full" onClick={onComplete}>26Get Started27</Button>28</div>29</SetupLayout>30);31};323334