"use client"; import Image from "next/image"; import React, { useState } from "react"; import BottomFooter from "@components/BottomFooter"; const ContactUs = () => { const [formData, setFormData] = useState({ name: "", email: "", message: "", }); const handleChange = (e: { target: { name: any; value: any } }) => { setFormData({ ...formData, [e.target.name]: e.target.value }); }; const handleSubmit = (e: { preventDefault: () => void }) => { 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 earthquakes, observatories or artefacts? Contact us via phone, email, social media or using the form below with the relevant contact details.

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