-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.tsx
75 lines (68 loc) · 1.98 KB
/
contact.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// @ts-nocheck
'use client';
import React from 'react';
import SectionHeading from './section-heading';
import { motion } from 'framer-motion';
import { useSectionInView } from '@/lib/hooks';
import { sendEmail } from '@/actions/sendEmail';
import SubmitBtn from './submit-btn';
import toast from 'react-hot-toast';
export default function Contact() {
const { ref } = useSectionInView('Contact');
return (
<motion.section
id='contact'
ref={ref}
className='mb-20 w-[min(100%,38rem)] text-center sm:mb-28'
initial={{
opacity: 0,
}}
whileInView={{
opacity: 1,
}}
transition={{
duration: 1,
}}
viewport={{
once: true,
}}
>
<SectionHeading>Contact me</SectionHeading>
<p className='-mt-6 text-gray-700 dark:text-white/80'>
Please contact me directly at{' '}
<a className='underline' href='mailto:[email protected]'>
</a>{' '}
or through this form.
</p>
<form
className='mt-10 flex flex-col dark:text-black'
action={async (formData) => {
const { data, error } = await sendEmail(formData);
if (error) {
toast.error(error);
return;
}
toast.success('Email sent successfully!');
}}
>
<input
className='borderBlack h-14 rounded-lg px-4 transition-all dark:bg-white dark:bg-opacity-80 dark:outline-none dark:focus:bg-opacity-100'
name='senderEmail'
type='email'
required
maxLength={500}
placeholder='Your email'
/>
<textarea
className='borderBlack my-3 h-52 rounded-lg p-4 transition-all dark:bg-white dark:bg-opacity-80 dark:outline-none dark:focus:bg-opacity-100'
name='message'
placeholder='Your message'
required
maxLength={5000}
/>
<SubmitBtn />
</form>
</motion.section>
);
}