"use client"; import { useState } from 'react'; export default function StainingQuote() { const [formData, setFormData] = useState({ name: '', email: '', phone: '', projectType: 'fence', message: '' }); const handleChange = (e: React.ChangeEvent) => { setFormData({ ...formData, [e.target.name]: e.target.value }); }; const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); console.log('Form submitted:', formData); alert('Thank you for your request! We will contact you shortly.'); }; return (

GET A WOOD STAINING QUOTE.

Tell us what you need stained, its approximate size, and your location — we'll come back with a quote and timeline within 2 business hours.

REQUEST A STAINING QUOTE
Response within 2 business hours
); }