import React from 'react'; import Head from 'next/head'; export default function Home() { const [email, setEmail] = React.useState(''); const [emailLoading, setEmailLoading] = React.useState(false); const [emailError, setEmailError] = React.useState(); const [emailSuccess, setEmailSuccess] = React.useState(); function handleEmailSubmit(e) { e.preventDefault(); if (!email) { return; } setEmailError(false); setEmailSuccess(false); setEmailLoading(true); fetch('/api/email', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ email, }), }) .then((res) => res.json()) .then((data) => { setEmailLoading(false); setEmailSuccess(true); }) .catch(() => { setEmailLoading(false); setEmailSuccess(false); setEmailError(true); }); } return (
TBD
TBD TITLE
VIEW FAQ

HELP LBRY
SAVE CRYPTO

The SEC don’t understand blockchain or crypto.
They’re saying LBC is a security, it’s not!

What is happening?

Some subtitle about below text.

The Securities and Exchange Commission has filed a case against LBRY, Inc. alleging that all distributions of LBRY Credits by LBRY, Inc. are unregistered securities offerings.

The SEC is claiming the LBRY token does not have utility and is not purchased for reasons of usage, which fortunately for everyone involved in cryptocurrency, makes this an extremely winnable case. Should LBRY, Inc. lose this case, it is likely that most other blockchain companies, as well as most individuals working on blockchain, would also be culpable.

Stay up to date

We will keep you up to date with any information we receive about this case.
setEmail(e.target.value)} />
{emailSuccess && (
Thank you! We will keep you in the loop.
)} {emailError && (
Sorry, there was an error. Please try again.
)}

Sign the petition

We know petitions don't do very much, but everything helps.
Petition iframe or link

See what people are saying

); }