Update May 12 by Elvis

This commit is contained in:
belviskhoremk
2026-05-12 00:28:37 +00:00
parent b32a70cd0e
commit c4450c993b
37 changed files with 3749 additions and 600 deletions

9
lib/api/contact.ts Normal file
View File

@@ -0,0 +1,9 @@
import { api } from "@/lib/api";
export async function submitContact(
name: string,
email: string,
message: string
): Promise<void> {
await api.post("/contact", { name, email, message });
}