diff --git a/web/pages/twitch.tsx b/web/pages/twitch.tsx new file mode 100644 index 00000000..152a8f2d --- /dev/null +++ b/web/pages/twitch.tsx @@ -0,0 +1,63 @@ +import { Page } from 'web/components/page' +import { Col } from 'web/components/layout/col' +import { ManifoldLogo } from 'web/components/nav/manifold-logo' +import { useSaveReferral } from 'web/hooks/use-save-referral' +import { SEO } from 'web/components/SEO' +import { Spacer } from 'web/components/layout/spacer' +import { firebaseLogin } from 'web/lib/firebase/users' +import { withTracking } from 'web/lib/service/analytics' +import { Row } from 'web/components/layout/row' +import { Button } from 'web/components/button' +import { useTracking } from 'web/hooks/use-tracking' + +export default function TwitchLandingPage() { + useSaveReferral() + useTracking('view twitch landing page') + + return ( + + +
+ +
+ + + + + + + +
+

+
+ + Bet + {' '} + on your favorite streams +
+

+ +
+ Get more out of Twitch with play-money betting markets. Click + the button below to link your Twitch account. +
+
+
+ + + + + +
+ ) +} diff --git a/web/public/twitch-logo.png b/web/public/twitch-logo.png new file mode 100644 index 00000000..7f575e7a Binary files /dev/null and b/web/public/twitch-logo.png differ