2024-09-20 15:47:55 -04:00
|
|
|
import ContactForm from "@/components/contact-form";
|
2024-07-01 11:11:56 -04:00
|
|
|
|
2024-09-20 15:47:55 -04:00
|
|
|
export const metadata = {
|
|
|
|
title: "Contact Us",
|
|
|
|
description: "Need our help? Get in touch!",
|
|
|
|
};
|
2024-07-01 11:11:56 -04:00
|
|
|
|
2024-09-20 13:59:31 -04:00
|
|
|
const ContactPage = () => {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<header className="bg-white shadow">
|
|
|
|
<div className="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8">
|
|
|
|
<h1 className="text-3xl font-bold text-gray-900">Contact Us</h1>
|
2024-07-01 11:11:56 -04:00
|
|
|
</div>
|
2024-09-20 13:59:31 -04:00
|
|
|
</header>
|
|
|
|
<div className="bg-gray-100 mx-auto text-gray-900 px-4 pt-8">
|
|
|
|
<div className="grid grid-cols-1 gap-8 max-w-3xl mx-auto">
|
|
|
|
<div className="text-gray-900">
|
|
|
|
<h2 className="text-xl font-semibold mb-4">Get in Touch</h2>
|
|
|
|
<p className="mb-4">We would love to hear from you. Please fill out the form below or use our contact information.</p>
|
|
|
|
|
|
|
|
<h3 className="text-lg font-semibold mb-2">Contact Information</h3>
|
|
|
|
<p>Email: sales@techaro.lol</p>
|
|
|
|
</div>
|
2024-07-01 11:11:56 -04:00
|
|
|
|
2024-09-20 13:59:31 -04:00
|
|
|
<div className="pb-4">
|
|
|
|
<h2 className="text-xl font-semibold mb-4">Contact Form</h2>
|
2024-09-20 15:49:50 -04:00
|
|
|
<noscript className="my-2">Enable JavaScript to use the contact form. It{"'"}s 2024. Give up.</noscript>
|
2024-09-20 15:47:55 -04:00
|
|
|
<ContactForm />
|
2024-09-20 13:59:31 -04:00
|
|
|
</div>
|
2024-07-01 11:11:56 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-09-20 13:59:31 -04:00
|
|
|
</>
|
2024-07-01 11:11:56 -04:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ContactPage;
|