Gatsby is an open-source static website generator that is based on the frontend framework React and uses GraphQL.
Start collecting data in a matter of clicks.
Let Formspark take care of the servers, databases, and analytics.
Set up any form in seconds.
Out of the box React support
Compatible with Jamstack
import React from "react"; const FORMSPARK_ACTION_URL = "https://submit-form.com/your-form-id"; export default function HomePage() { return ( <form method="POST" action={FORMSPARK_ACTION_URL}> <textarea name="message" placeholder="Message" /> <button type="submit">Send</button> </form> ) }