diff --git a/web/components/landing-page-panel.tsx b/web/components/landing-page-panel.tsx index bcfdaf1e..38b5e72a 100644 --- a/web/components/landing-page-panel.tsx +++ b/web/components/landing-page-panel.tsx @@ -1,18 +1,11 @@ -import { SparklesIcon } from '@heroicons/react/solid' - -import { Contract } from 'common/contract' - import { Spacer } from './layout/spacer' import { firebaseLogin } from 'web/lib/firebase/users' -import { ContractsGrid } from './contract/contracts-list' import { Col } from './layout/col' -import { Row } from './layout/row' import { withTracking } from 'web/lib/service/analytics' import { useTracking } from 'web/hooks/use-tracking' +import { SiteLink } from './site-link' -export function LandingPagePanel(props: { hotContracts: Contract[] }) { - const { hotContracts } = props - +export function LandingPagePanel() { useTracking('view landing page') return ( @@ -27,23 +20,28 @@ export function LandingPagePanel(props: { hotContracts: Contract[] }) {