"use client";
import { useState } from "react";
import Header from "@/components/layout/Header";
import Footer from "@/components/layout/Footer";
import { Mail, MapPin, Truck, Check } from "lucide-react";
export default function ContactPage() {
const [formData, setFormData] = useState({
name: "",
email: "",
message: "",
});
const [submitted, setSubmitted] = useState(false);
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
setSubmitted(true);
};
return (
<>
{/* Page Header */}
Get in Touch
Contact Us
Have questions? We'd love to hear from you.
{/* Contact Section */}
{/* Contact Info */}
Get in Touch
We're here to help! Whether you have questions about our products,
need assistance with an order, or just want to say hello, we'd love to hear from you.
Email
hello@manoonoils.com
We reply within 24 hours
Shipping
Free shipping over 3,000 RSD
Delivered within 2-5 business days
Location
Serbia
Shipping nationwide
{/* Contact Form */}
{submitted ? (
Thank You!
Your message has been sent. We'll get back to you soon.
) : (
)}
{/* FAQ Section */}
Frequently Asked Questions
{[
{
q: "How long does shipping take?",
a: "Orders are typically delivered within 2-5 business days for domestic shipping. You'll receive a tracking number once your order ships."
},
{
q: "Are your products 100% natural?",
a: "Yes! All our oils are 100% natural, cold-pressed, and free from any additives, preservatives, or artificial fragrances."
},
{
q: "What is your return policy?",
a: "We accept returns within 14 days of delivery for unopened products. Please contact us if you have any issues with your order."
},
{
q: "Do you offer wholesale?",
a: "Yes, we offer wholesale pricing for bulk orders. Please contact us at hello@manoonoils.com for more information."
}
].map((faq, index) => (
))}
>
);
}