import { useId } from 'react' import Image from 'next/image' import clsx from 'clsx' import { AppDemo } from '@/components/AppDemo' import { AppStoreLink } from '@/components/AppStoreLink' import { Button } from '@/components/Button' import { Container } from '@/components/Container' import { PhoneFrame } from '@/components/PhoneFrame' import logoBbc from '@/images/logos/bbc.svg' import logoCbs from '@/images/logos/cbs.svg' import logoCnn from '@/images/logos/cnn.svg' import logoFastCompany from '@/images/logos/fast-company.svg' import logoForbes from '@/images/logos/forbes.svg' import logoHuffpost from '@/images/logos/huffpost.svg' import logoTechcrunch from '@/images/logos/techcrunch.svg' import logoWired from '@/images/logos/wired.svg' function BackgroundIllustration(props: React.ComponentPropsWithoutRef<'div'>) { let id = useId() return (
) } function PlayIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } export function Hero() { return (

Invest at the perfect time.

By leveraging insights from our network of industry insiders, you’ll know exactly when to buy to maximize profit, and exactly when to sell to avoid painful losses.

As featured in

    {[ ['Forbes', logoForbes], ['TechCrunch', logoTechcrunch], ['Wired', logoWired], ['CNN', logoCnn, 'hidden xl:block'], ['BBC', logoBbc], ['CBS', logoCbs], ['Fast Company', logoFastCompany], ['HuffPost', logoHuffpost, 'hidden xl:block'], ].map(([name, logo, className]) => (
  • {name}
  • ))}
) }