DistordText

December 2023

might doesn't work on mobile
Evangelion 3.0+1.0 Thrice Upon a Time (2021) - IMDb - Evangelion 3.0+1.0 Thrice Upon a Time: Directed by Hideaki Anno, Kazuya Tsurumaki, Mahiro Maeda. With Megumi Ogata, Megumi Hayashibara, Yûko Miyamura, Maaya Sakamoto. Shinji Ikari is still adrift after losing his will to live, but the place he arrives at teaches him what it means to hope. Finally, the Instrumentality Project is set in motion and Wille make one last grueling stand to prevent the Final Impact. The fate of the whole world lies in the hands of fourteen-year-old Shinji Ikari and Misato Katsuragi, now burdened with the "truths" of the world. Nevertheless, in this moment of ultimate despair, this is the first time that humans have ever attempted to wrest their own fates from God's hands. This is the concluding chapter of the Rebuild of Evangelion tetralogy.

Unlock code snippet

Enter your email to get instant access to all code snippets and stay updated with my latest content!

import { useState } from "react";
import Button from "./ui/Button";
// Nice try lol, I promise I will not send you a tons of spam emails
// I just want to build a newsletter list to share my latest content with you 🥹
const INIT = "INIT";
const SUBMITTING = "SUBMITTING";
const ERROR = "ERROR";
const SUCCESS = "SUCCESS";
const formStates = [INIT, SUBMITTING, ERROR, SUCCESS] as const;
function NewsletterForm() {
return (
<form>
<input type="email" placeholder="
Enter your email" />
<Button type="submit">Subscribe</Button>
</form>
);
}
}