import React from 'react'; import { Link } from 'react-router-dom'; import { motion } from 'framer-motion'; const Shipping: React.FC = () => { const shippingDetails = [ { title: "Order Processing", description: "Each item is handcrafted and inspected with care. Please allow up to 3 business days for us to prepare and pack your order.", icon: "πŸ“¦" }, { title: "Shipping Methods", description: "We offer standard USPS shipping for most orders. For faster delivery, expedited shipping (such as USPS Priority or UPS) is available at checkout. Some oversized or multiple-item orders may ship via UPS Ground.", icon: "🚚" }, { title: "Delivery Time", description: "After processing, expect 3–5 business days transit time for standard domestic delivery. Expedited options can arrive in 1–2 days. Your order confirmation email will include a tracking number.", icon: "⏱️" }, { title: "Free Shipping", description: "We offer flat-rate shipping on orders under $75. Free standard shipping is available on all orders over $75. These promotions are subject to change, so check the cart for current offers.", icon: "✨" }, { title: "Packaging", description: "We reuse packing materials and eco-friendly fillers whenever possible to protect your ceramics and reduce waste. Every package is insured for its full value during transit.", icon: "♻️" }, { title: "Shipping Restrictions", description: "We do not ship to P.O. boxes. Unfortunately, we cannot ship internationally at this time (U.S. addresses only). If you need a rush order, please contact us – we'll do our best to accommodate.", icon: "πŸ‡ΊπŸ‡Έ" } ]; return (
{/* Header */}
Delivery Information Shipping
Policy
HOTCHPOTSH Ceramics proudly ships nationwide from our Texas studio. We strive to make delivery smooth and transparent for you.
{/* Shipping Details Grid */}
{shippingDetails.map((detail, index) => (
{detail.icon}

{detail.title}

{detail.description}

))}
{/* Important Notice */}

Peak Season Notice

Peak seasons and holidays may add 1–2 extra days to processing. We'll notify you of any anticipated delays. By having a clear, upfront shipping policy, we aim to boost your confidence and reduce checkout surprises.

{/* CTA Section */}

Questions about shipping?

Contact our team for specific shipping inquiries or rush orders.

Get in Touch
); }; export default Shipping;