"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.

) : (
setFormData({ ...formData, name: e.target.value })} className="w-full px-4 py-3 bg-white border border-[#e5e5e5] focus:outline-none focus:border-black transition-colors" placeholder="Your name" />
setFormData({ ...formData, email: e.target.value })} className="w-full px-4 py-3 bg-white border border-[#e5e5e5] focus:outline-none focus:border-black transition-colors" placeholder="your@email.com" />