import { AvatarPlaceholder, AvatarWithIcon } from './contract-feed' import { Title } from './title' import Textarea from 'react-expanding-textarea' import { useState } from 'react' import { Spacer } from './layout/spacer' import { NewContract } from '../pages/create' import { firebaseLogin, User } from '../lib/firebase/users' import { ContractsGrid } from './contracts-list' import { Contract } from '../../common/contract' import { TagsList } from './tags-list' import { Col } from './layout/col' export function FeedPromo(props: { hotContracts: Contract[] }) { const { hotContracts } = props return ( <>

Create your own
prediction markets

Find prediction markets run by your favorite creators, or make your own.
Sign up to get M$ 1,000 for free and start trading!
{' '} ) } export default function FeedCreate(props: { user?: User }) { const { user } = props const [question, setQuestion] = useState('') const placeholders = [ 'Will I make a new friend this week?', 'Will we discover that the world is a simulation?', 'Will anyone I know get engaged this year?', 'Will humans set foot on Mars by the end of 2030?', 'If I switch jobs, will I have more free time in 6 months than I do now?', 'Will any cryptocurrency eclipse Bitcoin by market cap?', ] // Rotate through a new placeholder each day // Easter egg idea: click your own name to shuffle the placeholder const daysSinceEpoch = Math.floor(Date.now() / 1000 / 60 / 60 / 24) const placeholder = placeholders[daysSinceEpoch % placeholders.length] return (
{user?.avatarUrl ? ( ) : ( )}
{/* TODO: Show focus, for accessibility */}

Ask a question...