import React from 'react';
import Image from 'next/image';
import { Header } from '../component/header';
import { Twitter } from '../component/twitter';
import { Stripe } from '../component/stripe';
import { t, m } from '../i18n';
import { tracker } from '../analytics';
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();
const lang = 'en'; // req.query.lang || 'en'
React.useEffect(() => {
tracker.trackPageView();
}, []);
function __(message) {
return t(message, lang);
}
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 (
{__(m.help_lbry)}
SAVE CRYPTO
The SEC doesn’t understand blockchain. The claims made in SEC vs.
LBRY would destroy the United States cryptocurrency
industry.
Help us educate the SEC
What’s the big deal?
The entire blockchain industry is at risk in the United States. Big
tech and Wall St. would have more power and many people could lose
their jobs!
Warning / Enticement: this video is more entertainment than
education, read the
Case Guide & FAQ
for facts
The SEC is advancing an aggressive and disastrous new standard
that would make almost all blockchain tokens securities.
Classifying all blockchain tokens as securities will be a
bureaucratic nightmare for United States residents and businesses
operating in the US.
Under this new standard, almost any token is a security, including
the previously safe ETH. The SEC additionally claims that token
sales are sales of securities too!
This change will make it much harder for startups to form new
blockchain companies, cause massive job loss, and stunt the
development of a critical new technology. All the while, big tech
and Wall St. prosper!