"use client"; import Image from "next/image"; import React, { useState } from "react"; 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 (
Logo {/* Overlay for readability */}
{/* Container */}
{/* Header */}

Contact Us

Have questions or concerns about earthquake preparedness? Contact us using the form below or through the provided contact details.

{/* Content Section */}
{/* Contact Form Section */}