API endpoints
Make an API call from your website
import axios from "axios";
import toast from "react-hot-toast";
axios
.post("/api/waitlist", {
email,
})
.then(() => {
toast.success("You've been added to the waitlist!");
})
.catch(() => {
toast.error("Something went wrong. Please try again later.");
})
.finally(() => {
setLoading(false);
});Last updated