2026-04-23 10:15:31 +05:30

71 lines
6.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use client";
import { useState } from 'react';
export default function StainingFAQ() {
const [openIndex, setOpenIndex] = useState<number | null>(null);
const faqs = [
{
q: "What stain products do you use?",
a: "We use Expert Stain & Seal products on all staining work — both the Stain & Seal product for application and Clean & Bright for surface preparation. Expert Stain & Seal is a professional-grade, deeply penetrating oil-based stain and sealer that we also supply to contractors across Ontario. Using the same product we sell means we know exactly how it performs on different wood types, in different conditions, and at different ages."
},
{
q: "How long will the stain last?",
a: "A properly applied Expert Stain & Seal finish on a well-prepped surface typically lasts 35 years on vertical surfaces like fences, and 24 years on horizontal surfaces like deck boards that take more direct sun, rain, and foot traffic. Pre-stained boards that have all four sides coated before installation often last longer than post-install staining because the end grain is sealed. We'll give you a realistic estimate for your specific project."
},
{
q: "Can old, grey weathered wood be stained?",
a: "In most cases, yes — and the results can be striking. Grey weathering is a surface condition, not a structural one. Treating the wood with Expert Stain & Seal Clean & Bright strips out the grey layer, removes mildew, and re-opens the grain so fresh stain can penetrate properly. Many homeowners are genuinely surprised at how good their fence or deck looks after restoration. We assess each job before quoting to confirm it's a good restoration candidate."
},
{
q: "How long after installing a new fence should I wait to stain?",
a: "For pressure treated wood, we recommend waiting 48 weeks after installation to allow the preservative treatment to dry and the wood moisture content to drop to a level where stain will absorb properly. For new cedar or pine, staining can happen sooner — sometimes immediately if the wood was pre-dried. We test moisture levels before starting any job to confirm the timing is right. Pre-staining the boards before installation eliminates this waiting period entirely."
},
{
q: "Do you do pre-staining of fence boards before installation?",
a: "Yes — and it's the approach we recommend for new fence projects whenever possible. Pre-staining allows us to coat all four sides of every picket and rail, including the back face and end grain, before installation. End grain is the primary point of moisture entry in a wood fence — sealing it before the fence goes up is significantly more effective than trying to reach it afterward. Contact us to arrange pre-staining alongside your fence material order."
},
{
q: "Do you serve areas outside KitchenerWaterloo?",
a: "Our staining services are based in the KitchenerWaterlooCambridge area with coverage extending to Guelph, Cambridge, Elmira, New Hamburg, and surrounding Waterloo Region communities. For projects further afield — Hamilton, Brantford, and the surrounding area — contact us to discuss availability. Our Expert Stain & Seal product supply covers a full 250km delivery radius from KWC for contractors who want to apply it themselves."
}
];
return (
<section className="faq-section">
<div className="reveal">
<div className="section-eyebrow">Helpful information</div>
<h2 className="sh">Wood staining<br /><span>knowledge base.</span></h2>
</div>
<div className="faq-seo-grid">
<div className="faq reveal">
{faqs.map((faq, index) => (
<div key={index} className={`faq-item ${openIndex === index ? 'open' : ''}`}>
<div
className="faq-q"
onClick={() => setOpenIndex(openIndex === index ? null : index)}
>
{faq.q}<span className="faq-icon">+</span>
</div>
<div className="faq-a">
{faq.a}
</div>
</div>
))}
</div>
<div className="content-block reveal">
<h3>Wood staining services Kitchener, Waterloo & Cambridge</h3>
<p>VG Fence Products offers <strong>professional wood staining services</strong> for fences, decks, pergolas, and all outdoor wood structures across the KitchenerWaterlooCambridge region. We use Expert Stain & Seal products the professional-grade oil-based stain we also supply to contractors across Ontario applied with proper prep, consistent technique, and a clean finished result.</p>
<h3>Fence staining service Waterloo Region</h3>
<p>Cedar and wood fence staining is one of our core services across Waterloo Region. We stain new fences, re-stain existing fences, and restore grey weathered fences using Clean & Bright prep and Expert Stain & Seal application. Contractors who want to offer staining as part of their fence installation can also purchase product directly through us at contractor pricing.</p>
<h3>Deck staining KWC & surrounding communities</h3>
<p><strong>Deck staining services</strong> covering deck boards, railings, stairs, and fascia boards are available across Kitchener, Waterloo, Cambridge, and surrounding communities. We handle new decks, restoration jobs, and re-staining of surfaces that have been maintained previously. Every deck job begins with a Clean & Bright prep wash no stain goes on an unprepped surface.</p>
<h3>Pre-staining services fence contractors & builders</h3>
<p>Pre-staining of fence boards before installation is available to <strong>fence contractors and builders</strong> ordering through VG Fence Products. Pre-staining is the most protective application method because it coats all four sides of every board including back face and end grain before installation. Contact us to add pre-staining to your material order.</p>
</div>
</div>
</section>
);
}