diff --git a/packages/design-system/src/components/landingPage/index.tsx b/packages/design-system/src/components/landingPage/index.tsx index 6a76a646e..688012c16 100644 --- a/packages/design-system/src/components/landingPage/index.tsx +++ b/packages/design-system/src/components/landingPage/index.tsx @@ -25,6 +25,7 @@ import classNames from 'classnames'; */ import { ArrowUp } from '../../icons'; import ProgressBar from '../progressBar'; +import SupportLink from './supportLink'; import QuickLinksList from './quickLinksList'; import { PSInfoKeyType } from './infoCard/fetchPSInfo'; import InfoCard from './infoCard'; @@ -40,6 +41,7 @@ interface LandingPageProps { iframeBorderClass?: string; extraClasses?: string; showQuickLinks?: boolean; + showSupportLink?: boolean; } const LandingPage = ({ @@ -51,6 +53,7 @@ const LandingPage = ({ extraClasses, contentPanel, showQuickLinks = true, + showSupportLink = false, }: LandingPageProps) => { const [loading, setLoading] = useState(iframeSrc ? true : false); const [open, setOpen] = useState(true); @@ -67,19 +70,24 @@ const LandingPage = ({ 'divide-y divide-hex-gray dark:divide-quartz' )} > -