Contact
// This is a contact page. Please fill out the form below.
/src/app/contact/form.tsx
1function ContactForm() {
2 const form = useForm<Schema>();
3
4 const onSubmit = async (data: Schema) => {
5 try {
6 await axios.post('/api/contact', {
7 name: "",
8 email: "",
9 message: "",
10 })
11
12 alert("Message sent!")
13 } catch (error) {
14 // Press F to my form (and send a sentry report)
15 }
16 }
17
18 return (
19 <form onSubmit={form.handleSubmit(onSubmit)}>
20 {/* inputs */}
21 <Button type="submit">Send</Button>
22 </form>
23 )
24}