diff --git a/src/components/Contact.jsx b/src/components/Contact.jsx index 43fea43..757232d 100644 --- a/src/components/Contact.jsx +++ b/src/components/Contact.jsx @@ -1,9 +1,74 @@ -import React from 'react' +import {useState, useRef} from 'react'; +import { motion } from 'framer-motion'; +import emailjs from '@emailjs/browser'; +import {styles} from "../Style"; +import {EarthCanvas} from "./canvas"; +import {SectionWrapper} from "../hoc"; +import { slideIn } from '../utils/motion'; const Contact = () => { +const formRef = useRef(); +const [form, setForm] = useState({ + name:"", + email:"", + message:"" +}); + +const [loading, setLoading] = useState(false); + +const handleChange = (e) => {}; +const handleSubmit = (e) => {} + return ( -
Contact
+
+ +

Get in touch

+

Contact .

+ +
+ + + + +