"use client"; import Link from 'next/link'; import Image from 'next/image'; import { useState, useEffect } from 'react'; import TestimonialSlider1 from '@/components/slider/TestimonialSlider1'; import GoogleReviewsBranding from '@/components/GoogleReviewsBranding'; export default function AboutPage() { const [openFaq, setOpenFaq] = useState(null); 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." }, ]; 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) */}
Google Reviews

What Our Clients Say.

Review us on Google
{/* 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
*/}
); }