"use client"; import Link from 'next/link'; import Image from 'next/image'; import { useState, useEffect } from 'react'; export default function AboutPage() { const [testIndex, setTestIndex] = useState(0); const [openFaq, setOpenFaq] = useState(null); const testimonials = [ { quote: "VG Fence consistently delivers high-quality materials on time. Their contractor pricing allows me to stay competitive, and their inventory is unmatched.", author: "Mark S.", role: "Local Fence Contractor" }, { quote: "Their galvanized and black finish railings are top-notch. It's rare to find a supplier that combines durability with such an aesthetic appeal.", author: "Sarah L.", role: "Property Manager" }, { quote: "The team at VG Fence is incredibly knowledgeable. They helped us select the right ornamental fencing for our latest residential development.", author: "David K.", role: "Construction Manager" } ]; const nextTestimonial = () => setTestIndex((prev) => (prev + 1) % testimonials.length); const prevTestimonial = () => setTestIndex((prev) => (prev - 1 + testimonials.length) % testimonials.length); const faqs = [ { question: "Do you offer contractor pricing?", answer: "Yes! We provide dedicated contractor accounts with specialized pricing. You need to create an account and verify your business details to unlock these rates." }, { question: "Do you offer installation services?", answer: "While our primary focus is supplying high-quality materials, we do provide installation support for select projects based on their size and scope." }, { question: "Where are your materials sourced from?", answer: "We source professional-grade materials focused on durability, specifically suited for Canada's diverse climate, including robust galvanized and black finish options." }, { question: "Do you offer delivery across Ontario?", answer: "Yes, we provide reliable delivery services across Ontario for both residential and commercial projects. Delivery times depend on the order size and location." }, { question: "Can I order custom gate sizes?", answer: "Absolutely. We specialize in custom gate fabrication. You can provide us with your specific dimensions and requirements, and we will manufacture them to fit your project perfectly." }, ]; // Auto-slide effect useEffect(() => { const interval = setInterval(() => { nextTestimonial(); }, 5000); // Change slide every 5 seconds return () => clearInterval(interval); }, [testIndex]); // Reset timer when index changes (manual navigation) return (
{/* Inner Banner */}

Your Trusted Fencing Partner

Home / About Us
{/* Our Story Section */}
Our Story

Your Trusted Fencing Partner

At VG Fence, we are dedicated to providing high-quality fencing and railing materials to contractors, property managers, event organizers, and homeowners. With years of experience in the industry, we have built a reputation as a reliable supplier for both commercial and residential projects.

We stock and supply a comprehensive range of fence products, including chain link fences, temporary fencing, ornamental fences, wood fence hardware, gates, railings, deck products, and privacy screens. All our materials are available in galvanized and black finishes, ensuring durability and long-lasting performance.

While our focus is primarily on material supply, we also provide installation support for select projects, based on size and scope.

Learn More
Quality modern fencing in a beautiful garden
Our Mission
To supply premium fencing and railing materials that combine quality, durability, and convenience, helping every project — large or small — succeed.
{/* Mission Section */} {/*
Our Mission

Empowering Success.

"To supply premium fencing and railing materials that combine quality, durability, and convenience, helping every project — large or small — succeed."

*/} {/* Testimonial Section (Slider) */}
Testimonials

What Our Partners Say.

{testimonials.map((test, idx) => (
{test.quote}
{test.author}
{test.role}
))}
{/* FAQ Section (Accordion) */}
FAQ

Frequently Asked Questions.

{faqs.map((faq, idx) => (
setOpenFaq(openFaq === idx ? null : idx)} >
{faq.question}
{faq.answer}
))}
{/* CTA Section */} {/*

Ready to Build?

Explore Ontario's most reliable inventory of fencing products.

View Full Catalog Contact Us
*/}
); }