import { motion } from "framer-motion"; import { Mail, MapPin, Phone, Instagram } from "lucide-react"; import { HeartHandshake } from "lucide-react"; import { useState } from "react"; import Box from "@mui/material/Box"; import Container from "@mui/material/Container"; import "./contact.css"; const fadeInUp = { hidden: { opacity: 0, y: 30 }, visible: { opacity: 1, y: 0, transition: { duration: 0.8, ease: "easeOut" } }, }; export default function ContactPage() { const [formStatus, setFormStatus] = useState<"idle" | "submitting" | "success">("idle"); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); setFormStatus("submitting"); setTimeout(() => setFormStatus("success"), 1500); }; return ( {/* ── Hero ── */}

Get in Touch

Whether you have a question about an order, wholesale inquiries, or simply want to share how much you love your new candle, we'd love to hear from you.

{/* ── Contact Body ── */}
{/* Info Panel */}

Contact Information

{[ { Icon: Mail, label: "Email", value: hello@manicandles.co }, { Icon: Phone, label: "Phone", value: <>Available Mon–Fri, 9am–5pm EST
+1 (555) 123-4567 }, { Icon: MapPin, label: "Studio", value: <>New York, NY
(By appointment only) }, ].map(({ Icon, label, value }) => (
{label}
{value}
))}

Follow Our Journey

Join our community on Instagram for behind-the-scenes peeks, styling inspiration, and launch announcements.

@manicandles.co
{/* Form Panel */}
{formStatus === "success" ? (

Thank you!

Your message has been received. We will get back to you as soon as possible.

) : ( <>

Send a Message