"use client" import { useState } from "react" import type React from "react" import Image from "next/image" import SiteFooter from "@/components/site-footer" export default function Contact() { const [formData, setFormData] = useState({ name: "", email: "", message: "", }) const handleSubmit = (e: React.FormEvent) => { e.preventDefault() // Handle form submission console.log("Form submitted:", formData) } const handleChange = (e: React.ChangeEvent) => { setFormData({ ...formData, [e.target.name]: e.target.value, }) } return (
{/* Header */}
Aunty Sparkles Logo
SHOP NOW
{/* Hero Section */}

Contact

Got questions, custom requests, or just want to say hi? I'd love to hear from you!

{/* Contact Cards */}

INSTAGRAM

Follow me on Instagram for behind-the-scenes peeks, new creations, market updates, and a little dose of upcycled magic.

@Aunty.Sparkles

EMAIL

I'd love to hear from you! Whether it's about a custom piece, a market inquiry, or just to say hi, you can email me anytime and I'll get back to you as soon as I can.

Aunty.Sparkles@gmail.com

{/* Contact Form */}

Let's Talk

Have a question, a custom request, or just want to say hi? Fill out the form below with your details and message, and I'll get back to you as soon as I can!

{/* Footer */}
) }