From 22924ddfbb13a3ce163c1c5564086cbaef946b36 Mon Sep 17 00:00:00 2001 From: Josh Pigford Date: Sun, 14 Jan 2024 12:58:56 -0600 Subject: [PATCH] Remove "team" from intro --- .../features/src/onboarding/steps/Intro.tsx | 39 +------------------ 1 file changed, 1 insertion(+), 38 deletions(-) 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. -

- ) }