english about section

This commit is contained in:
Owen Rees
2023-06-27 22:43:55 +02:00
parent c379d341dc
commit 7e61931fdb
17 changed files with 132 additions and 26 deletions
+1 -2
View File
@@ -9,14 +9,13 @@ const sendMail = async ({
message: message,
};
const response = await fetch("/api/send-mail", {
return await fetch("/api/send-mail", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(data),
});
return response;
};
export default sendMail;