diff --git a/libs/client/features/src/onboarding/steps/Intro.tsx b/libs/client/features/src/onboarding/steps/Intro.tsx index f6e6a192..9b02c26e 100644 --- a/libs/client/features/src/onboarding/steps/Intro.tsx +++ b/libs/client/features/src/onboarding/steps/Intro.tsx @@ -1,20 +1,9 @@ import { RiArrowRightLine } from 'react-icons/ri' -import { Button, Tooltip } from '@maybe-finance/design-system' +import { Button } from '@maybe-finance/design-system' import type { StepProps } from './StepProps' import { useState } from 'react' import { AiOutlineLoading3Quarters as LoadingIcon } from 'react-icons/ai' -const team = { - josh: { - name: 'Josh Pigford', - title: 'Co-Founder & CEO', - }, - travis: { - name: 'Travis Woods', - title: 'Co-Founder & CFO', - }, -} - export function Intro({ onNext, title }: StepProps) { const [isSubmitting, setIsSubmitting] = useState(false) @@ -45,32 +34,6 @@ export function Intro({ onNext, title }: StepProps) { )} -
-
- {Object.entries(team).map(([id, { name, title }]) => ( - -
{name}
-
{title}
-
- } - > - {name} - - ))} -
-

- Here’s the team behind Maybe. -
- We’re here to help if you need anything. -

- ) }