diff --git a/web/pages/landing-page.tsx b/web/pages/landing-page.tsx deleted file mode 100644 index 860ccfb2..00000000 --- a/web/pages/landing-page.tsx +++ /dev/null @@ -1,146 +0,0 @@ -import React from 'react' -import { - LightningBoltIcon, - ScaleIcon, - UserCircleIcon, - BeakerIcon, - ArrowDownIcon, -} from '@heroicons/react/outline' - -import { firebaseLogin } from 'web/lib/firebase/users' -import { Col } from 'web/components/layout/col' -import Link from 'next/link' - -export default function LandingPage() { - return ( -
- - -
- ) -} - -const scrollToAbout = () => { - const aboutElem = document.getElementById('about') - window.scrollTo({ top: aboutElem?.offsetTop, behavior: 'smooth' }) -} - -function Hero() { - return ( -
-
-
-
-
-
-
-

-
Create your own
-
- prediction markets -
-

-

- Better forecasting through accessible prediction markets -
- for you and your community -

-
- -
-
-
-
-
-
- -
-
-
-
- ) -} - -function FeaturesSection() { - const features = [ - { - name: 'Easy to participate', - description: 'Sign up for free and make your own predictions in seconds!', - icon: UserCircleIcon, - }, - { - name: 'Play money, real results', - description: - 'Get accurate predictions by betting with Manifold Dollars, our virtual currency.', - icon: LightningBoltIcon, - }, - { - name: 'Creator-driven markets', - description: - 'Resolve markets you create with your own judgment—enabling new markets with subjective or personal questions.', - icon: ScaleIcon, - }, - { - name: 'Become smarter', - description: - 'Bet on questions that matter and share the forecasts. With better information, we can all make better decisions.', - icon: BeakerIcon, - }, - ] - - return ( -
-
-
-
-

- Manifold Markets -

-

- Better forecasting for everyone -

-

- The easiest way to get an accurate forecast on anything -

-
- -
-
- {features.map((feature) => ( -
-
-
-
-

- {feature.name} -

-
-
- {feature.description} -
-
- ))} -
-
-
- - - - Learn more - - -
-
- ) -}