-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.js
26 lines (24 loc) · 831 Bytes
/
Contact.js
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
import React from 'react';
const Contact = () => {
return (
<section id="contact">
<h1>Lets Connect</h1>
<p>Get in touch with me through the form below or via email.</p>
<div className="contact-container">
<div className="contact-form">
<form>
<input type="text" placeholder="Name" className="input-field" />
<input type="email" placeholder="Email" className="input-field" />
<textarea placeholder="Message" className="textarea-field"></textarea>
<button type="submit" className="submit-button">Send</button>
</form>
</div>
<div className="contact-info">
<h2>Get in touch</h2>
<p>Email: [email protected]</p>
</div>
</div>
</section>
);
};
export default Contact;