diff --git a/public/facebook.webp b/public/facebook.webp new file mode 100644 index 0000000..3765b0b Binary files /dev/null and b/public/facebook.webp differ diff --git a/public/insta.webp b/public/insta.webp new file mode 100644 index 0000000..804fdb9 Binary files /dev/null and b/public/insta.webp differ diff --git a/public/linkedIn.png b/public/linkedIn.png new file mode 100644 index 0000000..720154f Binary files /dev/null and b/public/linkedIn.png differ diff --git a/public/tsunamiWaves.jpg b/public/tsunamiWaves.jpg new file mode 100644 index 0000000..4b64e8d Binary files /dev/null and b/public/tsunamiWaves.jpg differ diff --git a/public/x_logo.jpg b/public/x_logo.jpg new file mode 100644 index 0000000..2b2c789 Binary files /dev/null and b/public/x_logo.jpg differ diff --git a/src/app/contact-us/page.tsx b/src/app/contact-us/page.tsx index 42c71ef..ac3ebc2 100644 --- a/src/app/contact-us/page.tsx +++ b/src/app/contact-us/page.tsx @@ -1,5 +1,6 @@ "use client"; import React, { useState } from "react"; +import Image from "next/image"; const ContactUs = () => { const [formData, setFormData] = useState({ @@ -15,163 +16,152 @@ const ContactUs = () => { const handleSubmit = (e) => { e.preventDefault(); console.log("Form submitted with data:", formData); - // Handle form submission, like sending data to a server alert("Thank you for reaching out! We will get back to you soon."); - setFormData({ name: "", email: "", message: "" }); // Clear form + setFormData({ name: "", email: "", message: "" }); }; return ( -
- Have questions or concerns about earthquake preparedness? Contact us - using the form below or through the provided contact details. -
- - {/* Flexbox Layout for Form and Contact Details */} -