"use client"; import React, { useState } from "react"; import Image from "next/image"; const ContactUs = () => { const [formData, setFormData] = useState({ name: "", email: "", message: "", }); const handleChange = (e) => { setFormData({ ...formData, [e.target.name]: e.target.value }); }; const handleSubmit = (e) => { e.preventDefault(); console.log("Form submitted with data:", formData); alert("Thank you for reaching out! We will get back to you soon."); setFormData({ name: "", email: "", message: "" }); }; return (
Have questions or concerns about earthquake preparedness? Contact us using the form below or through the provided contact details.
{/* Content Section */}